/* ============================================
   CSS Variables & Reset
   ============================================ */
:root {
    --primary-color: #000000;
    --primary-dark: #0a0a0a;
    --primary-light: #1a1a1a;
    --secondary-color: #d4af37;
    --secondary-dark: #b8941f;
    --secondary-light: #f4d03f;
    --accent-color: #ffd700;
    --gold-gradient: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #ffd700 100%);
    --text-dark: #212121;
    --text-light: #757575;
    --bg-light: #f8f8f8;
    --bg-white: #ffffff;
    --bg-dark: #000000;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.15);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.2);
    --gold-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* ============================================
   Header & Navigation
   ============================================ */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    transition: var(--transition);
}

.navbar {
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: var(--transition);
}

.logo-image {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-initials {
    font-size: 1.4rem;
    font-weight: 800;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.logo-full {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--bg-dark);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.logo a:hover .logo-image {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.4));
}

.logo a:hover .logo-initials {
    filter: brightness(1.2);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    transition: var(--transition);
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--secondary-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--bg-dark);
    transition: var(--transition);
    border-radius: 2px;
}

/* ============================================
   Hero Section
   ============================================ */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(26,26,26,0.7) 100%),
                url('../images/hero-security-1.jpg') center/cover no-repeat;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    margin-top: 70px;
    background-attachment: fixed;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    background-position: bottom;
    opacity: 0.15;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.25);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 2rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 2rem;
    animation: bounce 2s infinite;
    z-index: 2;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--bg-dark);
    box-shadow: var(--gold-shadow);
    font-weight: 700;
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #f4d03f 0%, #ffd700 50%, #d4af37 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
    color: var(--bg-dark);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-block {
    display: block;
    width: 100%;
}

/* ============================================
   Sections
   ============================================ */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* ============================================
   Features Section
   ============================================ */
.features-section {
    background: var(--bg-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-dark);
    font-size: 2rem;
    box-shadow: var(--gold-shadow);
}

.feature-card h3 {
    color: var(--bg-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ============================================
   Services Section
   ============================================ */
.services-section {
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-image {
    height: 200px;
    background: var(--gold-gradient);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-dark);
    font-size: 4rem;
    position: relative;
    overflow: hidden;
}

.service-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(212, 175, 55, 0.2) 100%);
    z-index: 1;
}

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--bg-dark);
    font-size: 1.5rem;
    font-weight: 700;
}

.service-card p {
    padding: 0 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

.service-link:hover {
    gap: 1rem;
    filter: brightness(1.2);
}

/* ============================================
   Stats Section
   ============================================ */
.stats-section {
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(26,26,26,0.85) 100%),
                url('../images/services/security-concierge-guards.jpg?v=2') center/cover no-repeat;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    position: relative;
    overflow: hidden;
    background-attachment: fixed;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ============================================
   Page Hero
   ============================================ */
.page-hero {
    background: linear-gradient(135deg, rgba(0,0,0,0.65) 0%, rgba(26,26,26,0.75) 100%),
                url('../images/security-banner.jpg') center/cover no-repeat;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 120px 0 60px;
    text-align: center;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
    background-attachment: fixed;
    min-height: 300px;
    background-size: cover;
    background-position: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(212, 175, 55, 0.12) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.page-hero h1,
.page-hero p {
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* ============================================
   About Section
   ============================================ */
.about-section {
    background: var(--bg-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.about-image {
    position: relative;
}

.about-team-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: var(--gold-shadow);
}

.image-placeholder {
    background: var(--gold-gradient),
                url('../images/security-team.jpg') center/cover no-repeat;
    background-blend-mode: overlay;
    border-radius: 15px;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--bg-dark);
    font-size: 4rem;
    box-shadow: var(--gold-shadow);
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gold-gradient);
    opacity: 0.3;
    z-index: 1;
}

.image-placeholder i,
.image-placeholder p {
    position: relative;
    z-index: 2;
    color: var(--bg-dark);
    text-shadow: 0 2px 4px rgba(255,255,255,0.5);
}

.image-placeholder p {
    margin-top: 1rem;
    font-size: 1.2rem;
}

.mission-vision-section {
    background: var(--bg-light);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.mission-card,
.vision-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.card-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-dark);
    font-size: 2.5rem;
    box-shadow: var(--gold-shadow);
}

.mission-card h3,
.vision-card h3 {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.values-section {
    background: var(--bg-white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 10px;
    transition: var(--transition);
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.value-item i {
    font-size: 3rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.value-item h4 {
    color: var(--bg-dark);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.team-section {
    background: var(--bg-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team-member {
    background: var(--bg-white);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.member-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--gold-shadow);
    border: 4px solid var(--secondary-color);
    position: relative;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.team-member h4 {
    color: var(--bg-dark);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.member-role {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    margin-bottom: 1rem;
}

.member-bio {
    color: var(--text-light);
    line-height: 1.8;
}

/* ============================================
   Contact Section
   ============================================ */
.contact-section {
    background: var(--bg-white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
}

.contact-info h2 {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-dark);
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: var(--gold-shadow);
}

.contact-text h4 {
    color: var(--bg-dark);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.contact-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.3rem;
}

.contact-form-wrapper {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.contact-form-wrapper h2 {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.required {
    color: #e53935;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-white);
    width: 100%;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

/* File Upload Styles */
.file-upload-wrapper {
    position: relative;
}

.file-input {
    position: absolute;
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    z-index: -1;
}

.file-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border: 2px dashed var(--border-color);
    border-radius: 8px;
    background: var(--bg-white);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    min-height: 120px;
}

.file-label:hover {
    border-color: var(--secondary-color);
    background: rgba(212, 175, 55, 0.05);
}

.file-label i {
    font-size: 2.5rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.file-text {
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.file-name {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    word-break: break-all;
    display: none;
}

.file-name.has-file {
    display: block;
}

.file-hint {
    display: block;
    margin-top: 0.5rem;
    color: var(--text-light);
    font-size: 0.85rem;
}

.file-input:focus + .file-label {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

/* CAPTCHA Styles */
.captcha-wrapper {
    margin: 1.5rem 0;
}

.captcha-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.captcha-label label {
    color: var(--text-dark);
    font-weight: 500;
    margin: 0;
}

.captcha-refresh {
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 0.85rem;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Poppins', sans-serif;
}

.captcha-refresh:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--bg-dark);
    transform: translateY(-2px);
}

.captcha-refresh i {
    transition: var(--transition);
}

.captcha-refresh:hover i {
    transform: rotate(180deg);
}

.captcha-container {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.captcha-image-wrapper {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 5px;
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
}

.captcha-image {
    display: block;
    cursor: pointer;
    border-radius: 4px;
    transition: var(--transition);
}

.captcha-image:hover {
    opacity: 0.8;
    transform: scale(1.02);
}

.captcha-input {
    flex: 1;
    min-width: 150px;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    transition: var(--transition);
    background: var(--bg-white);
}

.captcha-input:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.captcha-hint {
    display: block;
    margin-top: 0.5rem;
    color: var(--text-light);
    font-size: 0.85rem;
    font-style: italic;
}

.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
}

.alert-success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #4caf50;
}

.alert-error {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ef5350;
}

.map-section {
    background: var(--bg-light);
    padding: 60px 0;
}

.map-section h2 {
    text-align: center;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.map-container {
    background: var(--bg-white);
    border-radius: 15px;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
    border-radius: 10px;
    display: block;
}

.map-info {
    margin-top: 20px;
    text-align: center;
    padding: 15px;
    background: var(--bg-light);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.map-info p {
    margin: 0;
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-info i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.map-info .btn {
    margin-top: 5px;
}

/* Responsive Map Styles */
@media (max-width: 768px) {
    .map-container {
        padding: 15px;
    }
    
    .map-container iframe {
        height: 350px;
    }
    
    .map-info {
        padding: 12px;
    }
    
    .map-info p {
        font-size: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
    
    .map-info .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .map-container iframe {
        height: 300px;
    }
    
    .map-section h2 {
        font-size: 2rem;
    }
}

.map-placeholder {
    background: var(--bg-white);
    border-radius: 15px;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    box-shadow: var(--shadow-md);
}

.map-placeholder i {
    font-size: 4rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.map-note {
    font-size: 0.9rem;
    margin-top: 1rem;
    font-style: italic;
}

/* ============================================
   Gallery Section
   ============================================ */
.gallery-section {
    background: var(--bg-white);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-dark);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gold-gradient);
    color: var(--bg-dark);
    border-color: var(--secondary-color);
    font-weight: 700;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-image {
    width: 100%;
    height: 100%;
    background: var(--gold-gradient);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--bg-dark);
    font-size: 4rem;
    position: relative;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    padding: 1rem;
    text-align: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
    line-height: 1.3;
}

.gallery-overlay p {
    color: rgba(255,255,255,0.9);
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
}

/* Gallery Modal/Popup */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.95);
    overflow: auto;
    animation: fadeIn 0.3s ease;
}

.gallery-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    margin: auto;
    animation: zoomIn 0.3s ease;
}

.gallery-modal-image {
    width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.gallery-modal-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    border-radius: 0 0 10px 10px;
    text-align: center;
}

.gallery-modal-info h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.gallery-modal-info p {
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    margin: 0;
}

.gallery-modal-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.7);
    border-radius: 50%;
    transition: var(--transition);
}

.gallery-modal-close:hover {
    background: rgba(212, 175, 55, 0.9);
    transform: rotate(90deg);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.gallery-item.hide {
    display: none;
}

/* ============================================
   Footer
   ============================================ */
.main-footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo-image {
    height: 80px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.footer-section h3 i {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-right: 0.5rem;
}

.footer-section p {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gold-gradient);
    transform: translateY(-3px);
    box-shadow: var(--gold-shadow);
}

.contact-info ul.contact-info {
    list-style: none;
}

.contact-info ul.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    color: rgba(255,255,255,0.8);
}

.contact-info ul.contact-info li i {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Contact Section Responsive */
    .contact-wrapper,
    .quote-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-section,
    .quote-section {
        padding: 40px 0;
    }
    
    .contact-info h2,
    .quote-info h2 {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .contact-info > p,
    .quote-info > p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }
    
    .contact-details {
        gap: 1.5rem;
    }
    
    .contact-item {
        gap: 1rem;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .contact-text h4 {
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
    }
    
    .contact-text p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 0.25rem;
    }
    
    .quote-benefits {
        gap: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .benefit-item {
        padding: 1.25rem;
        gap: 1rem;
    }
    
    .benefit-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .benefit-text h4 {
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
    }
    
    .benefit-text p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .quote-contact-info {
        padding: 1.5rem;
    }
    
    .quote-contact-info h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .quote-contact-info p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .contact-form-wrapper,
    .quote-form-wrapper {
        padding: 1.5rem;
    }
    
    .contact-form-wrapper h2,
    .quote-form-wrapper h2 {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }
    
    .contact-form,
    .quote-form {
        gap: 1.25rem;
    }
    
    .form-intro {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
        font-size: 16px; /* Prevents zoom on iOS */
        width: 100%;
        box-sizing: border-box;
    }
    
    .file-label {
        padding: 1.5rem 1rem;
        min-height: 100px;
    }
    
    .file-label i {
        font-size: 2rem;
    }
    
    .file-text {
        font-size: 0.9rem;
    }
    
    .captcha-container {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .captcha-image-wrapper {
        align-self: center;
        margin-bottom: 0;
    }
    
    .captcha-input {
        width: 100%;
    }
    
    .captcha-label {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0.75rem;
    }
    
    .captcha-refresh {
        flex-shrink: 0;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        gap: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-menu a {
        display: block;
        padding: 1rem 0;
        width: 100%;
    }
    
    .logo-image {
        height: 50px;
    }
    
    .logo-initials {
        font-size: 1.2rem;
    }
    
    .logo-full {
        font-size: 0.65rem;
    }
    
    .hero-section {
        background-attachment: scroll;
        min-height: 500px;
        height: auto;
        background-size: cover;
        background-position: center;
    }
    
    .page-hero {
        background-attachment: scroll;
        background-size: cover;
        background-position: center;
        padding: 80px 0 40px;
        margin-top: 70px;
        min-height: 250px;
    }
    
    .page-hero h1 {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .page-hero p {
        font-size: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .about-text p {
        font-size: 1rem;
        margin-bottom: 1.25rem;
        line-height: 1.7;
    }
    
    .about-team-image {
        height: 300px;
    }
    
    .about-section {
        padding: 40px 0;
    }
    
    .mission-vision-section {
        padding: 40px 0;
    }
    
    .mission-card,
    .vision-card {
        padding: 2rem;
    }
    
    .card-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
        margin-bottom: 1.25rem;
    }
    
    .mission-card h3,
    .vision-card h3 {
        font-size: 1.5rem;
        margin-bottom: 0.875rem;
    }
    
    .mission-card p,
    .vision-card p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .values-section {
        padding: 40px 0;
    }
    
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .value-item {
        padding: 1.5rem;
    }
    
    .value-item:hover {
        transform: none; /* Disable hover transform on mobile */
    }
    
    .value-item i {
        font-size: 2.5rem;
        margin-bottom: 0.875rem;
    }
    
    .value-item h4 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .value-item p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .team-section {
        padding: 40px 0;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-member {
        padding: 1.5rem;
    }
    
    .team-member:hover {
        transform: none; /* Disable hover transform on mobile */
    }
    
    .member-image {
        width: 120px;
        height: 120px;
        margin-bottom: 1.25rem;
    }
    
    .team-member h4 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }
    
    .member-role {
        font-size: 0.95rem;
        margin-bottom: 0.875rem;
    }
    
    .member-bio {
        font-size: 0.9rem;
        line-height: 1.7;
    }
    
    .contact-wrapper,
    .quote-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Reorder quote sections on mobile */
    .quote-info {
        order: 1;
    }
    
    .quote-form-wrapper {
        order: 2;
    }
    
    .contact-info h2,
    .quote-info h2 {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-info > p,
    .quote-info > p {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
        line-height: 1.6;
    }
    
    .contact-details {
        gap: 1.25rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        padding: 1rem;
        background: var(--bg-light);
        border-radius: 10px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin: 0 auto;
    }
    
    .contact-text {
        width: 100%;
    }
    
    .contact-text h4 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-text p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 0.3rem;
    }
    
    .quote-benefits {
        gap: 1rem;
        margin-bottom: 1.25rem;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .benefit-item:hover {
        transform: none; /* Disable hover transform on mobile */
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin: 0 auto;
    }
    
    .benefit-text {
        width: 100%;
    }
    
    .benefit-text h4 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .benefit-text p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin: 0;
    }
    
    .quote-contact-info {
        padding: 1.25rem;
        border-radius: 10px;
    }
    
    .quote-contact-info h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .quote-contact-info p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .form-intro {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        line-height: 1.5;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Quote Section Mobile Responsive */
    .quote-info h2 {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }
    
    .quote-info > p {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
        line-height: 1.5;
    }
    
    .quote-benefits {
        gap: 1rem;
        margin-bottom: 1.25rem;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .benefit-item:hover {
        transform: none; /* Disable hover transform on mobile */
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin: 0 auto;
    }
    
    .benefit-text {
        width: 100%;
    }
    
    .benefit-text h4 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .benefit-text p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin: 0;
    }
    
    .quote-contact-info {
        padding: 1.25rem;
        border-radius: 10px;
    }
    
    .quote-contact-info h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .quote-contact-info p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .form-intro {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        line-height: 1.5;
    }
    
    /* Form Mobile Optimizations */
    .contact-form-wrapper,
    .quote-form-wrapper {
        padding: 1.25rem;
        border-radius: 10px;
    }
    
    .contact-form-wrapper h2,
    .quote-form-wrapper h2 {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }
    
    .contact-form,
    .quote-form {
        gap: 1rem;
    }
    
    .form-group label {
        font-size: 0.95rem;
        margin-bottom: 0.4rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
        font-size: 16px; /* Prevents zoom on iOS */
        border-radius: 6px;
    }
    
    .file-label {
        padding: 1.25rem 0.75rem;
        min-height: 90px;
    }
    
    .file-label i {
        font-size: 1.75rem;
    }
    
    .file-text {
        font-size: 0.85rem;
        text-align: center;
    }
    
    .file-hint {
        font-size: 0.8rem;
        text-align: center;
    }
    
    .captcha-wrapper {
        margin: 1.25rem 0;
    }
    
    .captcha-container {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }
    
    .captcha-label {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .captcha-label label {
        font-size: 0.95rem;
    }
    
    .captcha-refresh {
        font-size: 0.8rem;
        padding: 6px 12px;
        width: 100%;
        justify-content: center;
    }
    
    .captcha-image-wrapper {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-bottom: 0;
    }
    
    .captcha-image-wrapper img {
        max-width: 100%;
        height: auto;
    }
    
    .captcha-input {
        width: 100%;
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 10px;
    }
    
    .btn-block {
        padding: 12px 20px;
        font-size: 1rem;
        width: 100%;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .contact-icon {
        margin: 0 auto;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .gallery-overlay h4 {
        font-size: 0.9rem;
    }
    
    .gallery-overlay p {
        font-size: 0.75rem;
    }
    
    .gallery-modal-content {
        max-width: 95%;
    }
    
    .gallery-modal-close {
        top: 10px;
        right: 15px;
        font-size: 30px;
        width: 40px;
        height: 40px;
    }
    
    .gallery-modal-info {
        padding: 1.5rem 1rem 1rem;
    }
    
    .gallery-modal-info h4 {
        font-size: 1.2rem;
    }
    
    .gallery-modal-info p {
        font-size: 0.9rem;
    }
    
    .hero-section {
        min-height: 400px;
        height: auto;
        background-size: cover;
        background-position: center;
    }
    
    .page-hero {
        background-size: cover;
        background-position: center;
        padding: 60px 0 30px;
        margin-top: 70px;
        min-height: 200px;
    }
    
    .page-hero h1 {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }
    
    .page-hero p {
        font-size: 0.95rem;
    }
    
    .section-header {
        margin-bottom: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }
    
    .section-header p {
        font-size: 0.9rem;
    }
    
    .about-section {
        padding: 30px 0;
    }
    
    .about-text h2 {
        font-size: 1.75rem;
        margin-bottom: 0.875rem;
    }
    
    .about-text p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
        line-height: 1.6;
    }
    
    .about-team-image {
        height: 250px;
    }
    
    .mission-vision-section {
        padding: 30px 0;
    }
    
    .mission-card,
    .vision-card {
        padding: 1.5rem;
    }
    
    .card-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .mission-card h3,
    .vision-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }
    
    .mission-card p,
    .vision-card p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .values-section {
        padding: 30px 0;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .value-item {
        padding: 1.25rem;
    }
    
    .value-item:hover {
        transform: none; /* Disable hover transform on mobile */
    }
    
    .value-item i {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .value-item h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .value-item p {
        font-size: 0.85rem;
        line-height: 1.6;
    }
    
    .team-section {
        padding: 30px 0;
    }
    
    .team-member {
        padding: 1.25rem;
    }
    
    .team-member:hover {
        transform: none; /* Disable hover transform on mobile */
    }
    
    .member-image {
        width: 100px;
        height: 100px;
        margin-bottom: 1rem;
    }
    
    .team-member h4 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .member-role {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
    
    .member-bio {
        font-size: 0.85rem;
        line-height: 1.6;
    }
    
    .stats-section {
        background-attachment: scroll;
        background-size: cover;
        background-position: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .quote-section {
        padding: 30px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    /* Form Mobile Optimizations */
    .contact-form-wrapper,
    .quote-form-wrapper {
        padding: 1.25rem;
        border-radius: 10px;
    }
    
    .contact-form-wrapper h2,
    .quote-form-wrapper h2 {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }
    
    .contact-form,
    .quote-form {
        gap: 1rem;
    }
    
    .form-group label {
        font-size: 0.95rem;
        margin-bottom: 0.4rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
        font-size: 16px; /* Prevents zoom on iOS */
        border-radius: 6px;
        width: 100%;
        box-sizing: border-box;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }
    
    .form-group select {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23212121' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 12px center;
        padding-right: 35px;
        cursor: pointer;
    }
    
    .alert {
        padding: 0.875rem;
        font-size: 0.9rem;
        margin-bottom: 1rem;
        word-wrap: break-word;
    }
    
    .file-label {
        padding: 1.25rem 0.75rem;
        min-height: 90px;
    }
    
    .file-label i {
        font-size: 1.75rem;
    }
    
    .file-text {
        font-size: 0.85rem;
        text-align: center;
    }
    
    .file-hint {
        font-size: 0.8rem;
        text-align: center;
    }
    
    .captcha-wrapper {
        margin: 1.25rem 0;
    }
    
    .captcha-label {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .captcha-label label {
        font-size: 0.95rem;
    }
    
    .captcha-refresh {
        font-size: 0.8rem;
        padding: 5px 10px;
        width: 100%;
        justify-content: center;
    }
    
    .captcha-image-wrapper {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .captcha-image-wrapper img {
        max-width: 100%;
        height: auto;
    }
    
    .captcha-input {
        width: 100%;
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 10px;
    }
    
    .btn-block {
        padding: 12px 20px;
        font-size: 1rem;
        width: 100%;
    }
    
    .contact-info h2 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-info > p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        line-height: 1.5;
    }
    
    .contact-details {
        gap: 1rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        padding: 0.875rem;
        background: var(--bg-light);
        border-radius: 8px;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        margin: 0 auto;
    }
    
    .contact-text h4 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }
    
    .contact-text p {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 0.25rem;
    }
    
    .btn {
        width: 100%;
    }
    
    .features-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-filters {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-btn {
        width: 100%;
    }
}

/* ============================================
   Quote Section
   ============================================ */
.quote-section {
    background: var(--bg-white);
    padding: 60px 0;
}

.quote-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    width: 100%;
    box-sizing: border-box;
}

.quote-info {
    order: 1;
}

.quote-form-wrapper {
    order: 2;
}

.quote-info h2 {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.quote-info > p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.quote-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 10px;
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-dark);
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: var(--gold-shadow);
}

.benefit-text h4 {
    color: var(--bg-dark);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.benefit-text p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.quote-contact-info {
    background: linear-gradient(135deg, var(--bg-dark), var(--primary-light));
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quote-contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.quote-contact-info h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: white;
    position: relative;
    z-index: 2;
}

.quote-contact-info p {
    color: rgba(255,255,255,0.9);
    line-height: 1.8;
    margin: 0;
    position: relative;
    z-index: 2;
}

.quote-contact-info strong {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.quote-form-wrapper {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.quote-form-wrapper h2 {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.form-intro {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* ============================================
   Utility Classes
   ============================================ */
.main-content {
    min-height: calc(100vh - 200px);
}

.text-center {
    text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }


/* =========================================================
   GET QUOTE PAGE – RESPONSIVE CSS
   ========================================================= */

/* ---------- GLOBAL FIXES ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 16px;
    padding-right: 16px;
}

/* ---------- PAGE HERO ---------- */
.page-hero {
    background: #0f172a;
    color: #ffffff;
    padding: 70px 0;
    text-align: center;
    background-size: cover;
    background-position: center;
}

.page-hero h1 {
    font-size: 44px;
    margin-bottom: 10px;
}

.page-hero p {
    font-size: 18px;
    opacity: 0.9;
}

/* ---------- QUOTE SECTION ---------- */
.quote-section {
    padding: 60px 0;
}

.quote-wrapper {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

/* ---------- LEFT INFO PANEL ---------- */
.quote-info {
    width: 50%;
}

.quote-info h2 {
    font-size: 30px;
    margin-bottom: 15px;
}

.quote-info p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}


/* ---------- BENEFITS ---------- */
.quote-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.benefit-item {
    display: flex;
    gap: 15px;
}

.benefit-icon {
    width: 42px;
    height: 42px;
    background: #d4af37;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-text h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.benefit-text p {
    font-size: 14px;
    color: #666;
}

/* ---------- FORM PANEL ---------- */
.quote-form-wrapper {
    width: 50%;
    background: #ffffff;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.form-intro {
    margin-bottom: 25px;
    color: #666;
}

/* ---------- FORM ELEMENTS ---------- */
.quote-form .form-group {
    margin-bottom: 18px;
}

.quote-form label {
    display: block;
    font-size: 14px;
    margin-bottom: 6px;
    font-weight: 600;
}

.quote-form .required {
    color: #e63946;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;
    padding: 14px;
    font-size: 16px; /* prevents iOS zoom */
    border: 1px solid #ddd;
    border-radius: 6px;
    outline: none;
    transition: border-color 0.2s ease;
}

.quote-form textarea {
    resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    border-color: #d4af37;
}

/* ---------- FORM ROW ---------- */
.form-row {
    display: flex;
    gap: 20px;
}

/* ---------- ALERTS ---------- */
.alert {
    padding: 14px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 14px;
}

.alert-success {
    background: #e6f4ea;
    color: #1b5e20;
}

.alert-error {
    background: #fdecea;
    color: #b71c1c;
}

/* ---------- BUTTON ---------- */
.btn {
    display: inline-block;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.btn-primary {
    background: #d4af37;
    color: #000;
}

.btn-primary:hover {
    background: #c9a227;
}

.btn-block {
    width: 100%;
    padding: 16px;
    font-size: 17px;
    border-radius: 6px;
}



.image-showcase-section {
    background: var(--bg-light);
    padding: 60px 0;
}

.image-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.image-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.image-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.showcase-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    border-radius: 15px;
    transition: var(--transition);
}

.image-item:hover .showcase-image {
    transform: scale(1.05);
}

/* =========================================================
   RESPONSIVE BREAKPOINTS
   ========================================================= */

/* ---------- TABLET ---------- */


/* Responsive styles for image-showcase-section */
@media (max-width: 768px) {
    .image-showcase-section {
        padding: 40px 0;
    }

    .image-showcase-grid {
        grid-template-columns: 1fr; /* Stack images on mobile */
        gap: 1.5rem;
    }

    .showcase-image {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .image-showcase-section {
        padding: 30px 0;
    }

    .showcase-image {
        height: 200px;
    }
}


@media (max-width: 992px) {
    .quote-wrapper {
        flex-direction: column;
    }

    .quote-info,
    .quote-form-wrapper {
        width: 100%;
    }

    .quote-form-wrapper {
        padding: 30px;
    }
}

/* ---------- MOBILE ---------- */
@media (max-width: 768px) {
    .page-hero {
        padding: 50px 0;
    }

    .page-hero h1 {
        font-size: 32px;
    }

    .page-hero p {
        font-size: 16px;
    }

    .quote-info h2,
    .quote-form-wrapper h2 {
        font-size: 24px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

/* ---------- SMALL MOBILE ---------- */
@media (max-width: 576px) {
    .quote-benefits {
        grid-template-columns: 1fr;
    }

    .quote-form-wrapper {
        padding: 24px;
    }

    .benefit-item {
        align-items: flex-start;
    }

    .quote-contact-info {
        text-align: center;
    }
}