/* ============================================
   Services Scroll Section - Next Level Premium
   Horizontal Scroll | Animated Cards | Gold Theme
   ============================================ */

.services-scroll {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #FFF9E6 100%);
    position: relative;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}
.section-header h2:after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background: #D4AF37;
    margin: 12px auto 0;
    border-radius: 2px;
    animation: pulseWidth 2s infinite ease-in-out;
}
@keyframes pulseWidth {
    0% { width: 70px; opacity: 0.6; }
    50% { width: 100px; opacity: 1; }
    100% { width: 70px; opacity: 0.6; }
}
.section-intro {
    font-size: 1rem;
    color: #666;
    max-width: 650px;
    margin: 0 auto;
}

/* Scroll Container */
.scroll-container {
    margin: 0 -20px;
    padding: 20px 20px 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #D4AF37 #f0f0f0;
}
.scroll-container::-webkit-scrollbar {
    height: 6px;
}
.scroll-container::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}
.scroll-container::-webkit-scrollbar-thumb {
    background: #D4AF37;
    border-radius: 10px;
    transition: background 0.2s;
}
.scroll-container::-webkit-scrollbar-thumb:hover {
    background: #b8860b;
}

/* Cards Wrapper */
.scroll-cards {
    display: flex;
    gap: 30px;
    width: max-content;
    padding: 10px 0;
}

/* Individual Card */
.service-card {
    width: 300px;
    background: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.2);
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    animation: cardFloatIn 0.5s backwards;
}
.service-card:nth-child(1) { animation-delay: 0.05s; }
.service-card:nth-child(2) { animation-delay: 0.1s; }
.service-card:nth-child(3) { animation-delay: 0.15s; }
.service-card:nth-child(4) { animation-delay: 0.2s; }
.service-card:nth-child(5) { animation-delay: 0.25s; }
.service-card:nth-child(6) { animation-delay: 0.3s; }
.service-card:nth-child(7) { animation-delay: 0.35s; }
.service-card:nth-child(8) { animation-delay: 0.4s; }
.service-card:nth-child(9) { animation-delay: 0.45s; }
.service-card:nth-child(10) { animation-delay: 0.5s; }
.service-card:nth-child(11) { animation-delay: 0.55s; }
.service-card:nth-child(12) { animation-delay: 0.6s; }

@keyframes cardFloatIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card:hover {
    transform: translateY(-12px);
    border-color: #D4AF37;
    box-shadow: 0 30px 45px rgba(212, 175, 55, 0.15);
}

/* Image */
/* Image styling – curved top corners */
.service-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.3s ease;
    border-radius: 28px 28px 0 0;  /* curved top corners */
}

/* Optional: add a subtle gold gradient overlay on hover */
.service-card {
    position: relative;
}
.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent);
    border-radius: 28px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
}
.service-card:hover::after {
    opacity: 1;
}

/* Enhance card shadow and border on hover */
.service-card:hover {
    transform: translateY(-12px);
    border-color: #D4AF37;
    box-shadow: 0 30px 45px rgba(212, 175, 55, 0.15);
}

/* Image hover effect – scale + subtle brightness */
.service-card:hover .service-image {
    transform: scale(1.05);
    filter: brightness(1.02);
}

/* Card content improvements */
.service-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    padding: 20px 20px 8px;
    margin: 0;
    color: #1a1a1a;
    transition: color 0.2s;
}
.service-card:hover h3 {
    color: #D4AF37;
}

/* Learn More button – more elegant */
.learn-more {
    display: inline-block;
    margin: 0 20px 25px;
    padding: 10px 0;
    text-align: center;
    background: transparent;
    border: 1px solid #D4AF37;
    color: #D4AF37;
    font-weight: 600;
    text-decoration: none;
    border-radius: 40px;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    font-size: 0.85rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.learn-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #D4AF37;
    transition: left 0.3s ease;
    z-index: -1;
}
.learn-more:hover::before {
    left: 0;
}
.learn-more:hover {
    color: #fff;
    transform: translateX(5px);
}

/* Card Content */
.service-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    padding: 20px 20px 10px;
    margin: 0;
    color: #1a1a1a;
}
.service-card p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #666;
    padding: 0 20px 20px;
    margin: 0;
    flex-grow: 1;
}

/* Learn More Link */
.learn-more {
    display: inline-block;
    margin: 0 20px 25px;
    padding: 10px 0;
    text-align: center;
    background: transparent;
    border: 1px solid #D4AF37;
    color: #D4AF37;
    font-weight: 600;
    text-decoration: none;
    border-radius: 40px;
    transition: all 0.3s;
    font-size: 0.85rem;
}
.learn-more:hover {
    background: #D4AF37;
    color: #fff;
    transform: translateX(5px);
}

/* Scroll Buttons */
.scroll-buttons {
    text-align: center;
    margin: 30px 0 20px;
}
.scroll-btn {
    background: #ffffff;
    border: 1px solid #D4AF37;
    color: #D4AF37;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.2s;
    margin: 0 8px;
}
.scroll-btn:hover {
    background: #D4AF37;
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 5px 12px rgba(212, 175, 55, 0.3);
}

/* View All Services Button */
.text-center {
    text-align: center;
    margin-top: 20px;
}
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 2px solid #D4AF37;
    color: #D4AF37;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}
.btn-outline:hover {
    background: #D4AF37;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .services-scroll {
        padding: 50px 0;
    }
    .section-header h2 {
        font-size: 1.8rem;
    }
    .service-card {
        width: 260px;
    }
    .service-image {
        height: 150px;
    }
    .service-card h3 {
        font-size: 1.1rem;
        padding: 15px 15px 8px;
    }
    .service-card p {
        font-size: 0.8rem;
        padding: 0 15px 15px;
    }
    .learn-more {
        margin: 0 15px 20px;
        font-size: 0.8rem;
    }
    .scroll-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .service-card {
        width: 240px;
    }
}

/* How It Works Section – Gold/White/Black Theme */
/* ============================================
   How It Works Section - Premium Design
   3 Steps | Animated | Gold/White/Black Theme
   ============================================ */



/* Trust CTA Section - Golden Theme */
/* Trust CTA Section – Light Golden Background */
.trust-cta {
    text-align: center;
    background: #FFF9E6;  /* light golden */
    padding: 50px 30px;
    border-radius: 16px;
    margin: 40px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.trust-cta p {
    font-size: 1.4rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 25px;
    letter-spacing: -0.2px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-gold, .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 40px;
    transition: all 0.2s ease;
}

.btn-gold {
    background: #D4AF37;
    color: #fff;
    border: 1px solid #D4AF37;
}

.btn-gold:hover {
    background: #b8860b;
    border-color: #b8860b;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #D4AF37;
    border: 1px solid #D4AF37;
}

.btn-outline:hover {
    background: #D4AF37;
    color: #fff;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 370px) {
    .trust-cta {
        padding: 35px 20px;
    }
    .trust-cta p {
        font-size: 1.2rem;
    }
    .btn-gold, .btn-outline {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}


/* ============= FORMS ============= */
form {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

form input, form textarea, form select {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #bdc3c7;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1em;
}

form input:focus, form textarea:focus, form select:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 5px rgba(52, 152, 219, 0.3);
}

form button {
    width: 100%;
    padding: 12px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

form button:hover {
    background-color: #2980b9;
}

/* ============= UTILITY CLASSES ============= */
.text-center {
    text-align: center;
}

.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }

@media (max-width: 768px) {
    section {
        padding: 30px 0;
    }

    section h2 {
        font-size: 1.5em;
    }

    .trust-grid, .services-grid {
        grid-template-columns: 1fr;
    }

    .btn {
        display: block;
        width: 100%;
        text-align: center;
    }
}
/* Header & Navigation Styles */
/* ============================================
   AL-NOOR HEADER STYLES - PROFESSIONAL GOLDEN THEME
   ============================================ */

/* CSS Variables for Easy Customization */
:root {
    --alnoor-gold: #D4AF37;
    --alnoor-gold-dark: #B8860B;
    --alnoor-gold-light: #F4E4BC;
    --alnoor-black: #fffefe;
    --alnoor-dark: #111111;
    --alnoor-white: #ffffff;
    --alnoor-gray: #f5f5f5;
}

/* Main Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--alnoor-white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Main Navigation */
.main-navbar {
    background: #ffffff;
    padding: 0;
    border-bottom: 3px solid var(--alnoor-gold);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.main-navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 80px;
}

/* Logo with Image */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 85px;
    height: 75px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Logo Image - Replace the icon with actual logo image */
.logo-icon::before {
    content: '';
    width: 100%;
    height: 100%;
    background-image: url('/images/logo/al-noor-logo.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

/* Logo Image Styling */
.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Hide the home icon when using image */
.logo-icon i {
    display: none;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 18px;
    font-weight: 700;
    color: var(--alnoor-gold);
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.logo-sub {
    font-size: 9px;
    color: var(--alnoor-gold-light);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 3px;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 5px;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #333333;
    font-weight: 500;
    font-size: 15px;
    padding: 30px 18px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--alnoor-gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
    color: var(--alnoor-gold);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.dropdown-toggle i {
    font-size: 12px;
    transition: transform 0.3s;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--alnoor-white);
    min-width: 280px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 0 0 12px 12px;
    padding: 10px 0;
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    list-style: none;
    border-top: 3px solid var(--alnoor-gold);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--alnoor-dark);
    text-decoration: none;
    transition: all 0.3s;
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: linear-gradient(90deg, var(--alnoor-gold-light) 0%, transparent 100%);
    color: var(--alnoor-gold-dark);
    padding-left: 25px;
}

.dropdown-item i {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--alnoor-gold) 0%, var(--alnoor-gold-dark) 100%);
    color: var(--alnoor-white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.item-title {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: #111111;
}

.item-desc {
    display: block;
    font-size: 12px;
    color: #888;
    margin-top: 2px;
}

/* Cities Menu Specific */
.city-item {
    justify-content: flex-start;
    gap: 15px;
}

.city-item i {
    background: linear-gradient(135deg, var(--alnoor-gold) 0%, var(--alnoor-gold-dark) 100%);
}

.city-item span {
    font-weight: 600;
    color: #111111;
}

.city-item small {
    display: block;
    color: #888;
    font-size: 11px;
}

.dropdown-footer {
    padding: 12px 20px;
    border-top: 2px solid var(--alnoor-gold-light);
    margin-top: 5px;
}

.view-all {
    color: var(--alnoor-gold-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.view-all:hover {
    color: var(--alnoor-gold);
}

/* CTA Buttons */
.header-cta {
    display: flex;
    gap: 12px;
}

.btn {
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-outline {
    border: 2px solid var(--alnoor-gold);
    color: var(--alnoor-gold);
    background: transparent;
}

.btn-outline:hover {
    background: var(--alnoor-gold);
    color: var(--alnoor-black);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary {
    background: linear-gradient(135deg, var(--alnoor-gold) 0%, var(--alnoor-gold-dark) 100%);
    color: var(--alnoor-black);
    border: 2px solid var(--alnoor-gold);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--alnoor-gold-light) 0%, var(--alnoor-gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: #333333;
    transition: all 0.3s;
    border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Header Spacer */
.header-spacer {
    height: 80px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .main-navbar .container {
        height: 70px;
    }
    
    .logo-main {
        font-size: 22px;
    }
    
    .logo-sub {
        font-size: 10px;
    }
    
    .nav-link {
        padding: 25px 14px;
        font-size: 14px;
    }
    
    .btn {
        padding: 10px 18px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #ffffff;
        flex-direction: column;
        padding: 20px;
        gap: 0;
        transition: left 0.3s ease;
        overflow-y: auto;
        border-top: 2px solid var(--alnoor-gold);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        border-bottom: 1px solid #e0e0e0;
    }
    
    .nav-link {
        padding: 18px 0;
        font-size: 16px;
        color: #333333;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        max-height: 0;
        overflow: hidden;
        background: #f5f5f5;
        min-width: 100%;
        transition: max-height 0.3s ease;
    }
    
    .dropdown.active .dropdown-menu {
        max-height: 500px;
        padding: 10px 0;
    }
    
    .dropdown-item {
        color: #333333;
        border-bottom: 1px solid #e0e0e0;
    }
    
    .item-title {
        color: #333333;
    }
    
    .header-cta {
        display: none;
    }
    
    .header-spacer {
        height: 70px;
    }
}

@media (max-width: 370px) {
    .logo-icon {
        width: 60px;
        height: 55px;
    }
    
    .logo-main {
        font-size: 18px;
    }
    
    .logo-sub {
        font-size: 9px;
        letter-spacing: 1px;
    }
}
/* Hero Section with 7 Background Images Slideshow */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* 7 Background Images - Before Pseudo Element */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    animation: heroSlideshow 35s infinite;
    z-index: 0;
}

/* Slideshow Keyframes - continuous smooth zoom with instant image change */
@keyframes heroSlideshow {
    0% {
        background-image: url('/images/services/1.png');
        transform: scale(1);
    }
    13.8% {
        background-image: url('/images/services/1.png');
        transform: scale(1.15);
    }
    14.28% {
        background-image: url('/images/services/2.png');
        transform: scale(1);
    }
    28.07% {
        background-image: url('/images/services/2.png');
        transform: scale(1.15);
    }
    28.57% {
        background-image: url('/images/services/3.png');
        transform: scale(1);
    }
    42.35% {
        background-image: url('/images/services/3.png');
        transform: scale(1.15);
    }
    42.85% {
        background-image: url('/images/services/4.png');
        transform: scale(1);
    }
    56.64% {
        background-image: url('/images/services/4.png');
        transform: scale(1.15);
    }
    57.13% {
        background-image: url('/images/services/5.png');
        transform: scale(1);
    }
    70.92% {
        background-image: url('/images/services/5.png');
        transform: scale(1.15);
    }
    71.41% {
        background-image: url('/images/services/6.png');
        transform: scale(1);
    }
    85.21% {
        background-image: url('/images/services/6.png');
        transform: scale(1.15);
    }
    85.70% {
        background-image: url('/images/healper.jpeg');
        transform: scale(1);
    }
    99.5% {
        background-image: url('/images/maid.jpeg');
        transform: scale(1.15);
    }
    100% {
        background-image: url('/images/services/1.png');
        transform: scale(1);
    }
}

/* Subtle Black Overlay */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.25) 100%
    );
    z-index: 1;
}

/* Content Styling */
.hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 100%;
}

.hero-content {
    max-width: 600px;
    text-align: left;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #FFD700;
    margin-bottom: 20px;
    text-shadow: 3px 3px 10px rgba(0,0,0,0.7);
    letter-spacing: 1px;
}

.hero h1::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: #B8860B;
    margin: 20px 0;
}

.hero p {
    font-size: 18px;
    line-height: 1.7;
    color: #FFFFFF;
    margin-bottom: 35px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

/* Buttons */
.hero-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.hero .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.hero .btn-primary {
    background: #B8860B;
    color: #ffffff;
}

.hero .btn-primary:hover {
    background: #D4AF37;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(184, 134, 11, 0.4);
}

.hero .btn-whatsapp {
    background: #B8860B;
    color: #ffffff;
}

.hero .btn-whatsapp:hover {
    background: #D4AF37;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(184, 134, 11, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .hero .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .hero-content {
        max-width: 100%;
    }
}

@media (max-width: 370px) {
    .hero h1 {
        font-size: 26px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* Cities Section - Professional Golden Theme */
/* Cities Section – Clean, Minimal, Professional */

/* CTA Section – Clean & Professional */
/* ============================================
   CTA Section - Light Golden Background
   Consistent with Other Sections | Animated
   ============================================ */

.cta-section {
    position: relative;
    padding: 80px 20px;
    background: linear-gradient(135deg, #ffffff 0%, #FFF9E6 100%);
    overflow: hidden;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

/* Subtle animated gold glow (light version) */
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -30%;
    width: 160%;
    height: 200%;
    background: radial-gradient(circle at 30% 40%, rgba(212, 175, 55, 0.08), transparent 70%);
    animation: rotateGlow 12s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes rotateGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Subtle gold particle pattern */
.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1) forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.cta-section p {
    font-size: 1.1rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto 35px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

/* Button Styles */
.btn-call, .btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Call Button - Gold Gradient */
.btn-call {
    background: linear-gradient(135deg, #D4AF37, #FFD966);
    color: #1a1a1a;
    border: none;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.25);
}
.btn-call::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FFD966, #D4AF37);
    transition: left 0.3s ease;
    z-index: -1;
}
.btn-call:hover::before {
    left: 0;
}
.btn-call:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.35);
}

/* WhatsApp Button - Green/Gold Blend */
.btn-whatsapp {
    background: linear-gradient(135deg, #D4AF37, #FFD966);
    color: #ffffff;
    border: none;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}
.btn-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FFD966, #D4AF37);
    transition: left 0.3s ease;
    z-index: -1;
}
.btn-whatsapp:hover::before {
    left: 0;
}
.btn-whatsapp:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
}

/* Icon animations */
.btn-call i, .btn-whatsapp i {
    transition: transform 0.2s;
}
.btn-call:hover i, .btn-whatsapp:hover i {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .cta-section {
        padding: 60px 20px;
    }
    .cta-section h2 {
        font-size: 1.8rem;
    }
    .cta-section p {
        font-size: 1rem;
    }
    .btn-call, .btn-whatsapp {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    .cta-buttons {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .btn-call, .btn-whatsapp {
        width: 100%;
        justify-content: center;
    }
}
    /* Cities Section - 2 columns */
  
/* About Page – Professional Styling */
.about-hero {
    background: linear-gradient(135deg, #FFF9E6 0%, #ffffff 100%);
    padding: 80px 0 60px;
    text-align: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}
.about-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
}
.about-hero .tagline {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Who We Are – Two Columns */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin: 70px 0;
}
.about-text h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 15px;
}
.title-border {
    width: 60px;
    height: 2px;
    background: #D4AF37;
    margin-bottom: 25px;
}
.about-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}
.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* Mission & Vision Cards */
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 60px 0;
}
.mission-card, .vision-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    transition: transform 0.2s;
}
.mission-card:hover, .vision-card:hover {
    transform: translateY(-5px);
    border-color: #D4AF37;
}
.card-icon i {
    font-size: 48px;
    color: #D4AF37;
    margin-bottom: 20px;
}
.mission-card h3, .vision-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}
.mission-card p, .vision-card p {
    color: #666;
    line-height: 1.5;
}

/* Core Values */
.values-section {
    margin: 60px 0;
    text-align: center;
}
.values-section h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 10px;
}
.centered {
    margin-left: auto;
    margin-right: auto;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}
.value-item {
    background: #f9f9f9;
    padding: 15px 20px;
    border-radius: 12px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: 0.2s;
}
.value-item i {
    color: #D4AF37;
    font-size: 20px;
    width: 30px;
}
.value-item:hover {
    background: #FFF9E6;
    border-left: 3px solid #D4AF37;
}

/* What Makes Us Different */
.different-section {
    margin: 60px 0;
    text-align: center;
}
.different-section h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 10px;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 40px;
}
.feature {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: 0.2s;
    font-size: 1rem;
}
.feature i {
    display: block;
    font-size: 32px;
    color: #D4AF37;
    margin-bottom: 12px;
}
.feature:hover {
    transform: translateY(-3px);
    border-bottom: 2px solid #D4AF37;
}

/* Safety Box */
.safety-box {
    background: #FFF9E6;
    border-radius: 24px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 60px 0;
    border: 1px solid rgba(212, 175, 55, 0.3);
}
.safety-icon i {
    font-size: 64px;
    color: #D4AF37;
}
.safety-content h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 10px;
}
.safety-content p {
    font-size: 1rem;
    line-height: 1.5;
    color: #555;
}

/* CTA Buttons */
.about-cta {
    text-align: center;
    margin: 60px 0 80px;
}
.btn-primary {
    background: #D4AF37;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 40px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.2s;
}
.btn-primary:hover {
    background: #b8860b;
    transform: translateY(-2px);
}
.btn-outline {
    background: transparent;
    border: 1px solid #D4AF37;
    color: #D4AF37;
    padding: 12px 30px;
    border-radius: 40px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.2s;
    margin-left: 15px;
}
.btn-outline:hover {
    background: #D4AF37;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .about-hero {
        padding: 50px 0;
    }
    .about-hero h1 {
        font-size: 1.8rem;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin: 40px 0;
    }
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .values-grid {
        grid-template-columns: 1fr;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .safety-box {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    .about-cta {
        margin: 40px 0;
    }
    .btn-outline {
        margin-left: 0;
        margin-top: 10px;
        display: block;
        width: 100%;
    }
}
/* Contact Page – Professional Styling */
.contact-hero {
    background: linear-gradient(135deg, #FFF9E6 0%, #ffffff 100%);
    padding: 70px 0 50px;
    text-align: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}
.contact-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}
.contact-hero .tagline {
    font-size: 1.1rem;
    color: #666;
    max-width: 650px;
    margin: 0 auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin: 60px 0;
}

/* Contact Info Cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    border: 1px solid #eee;
    transition: 0.2s;
}
.info-card:hover {
    border-color: #D4AF37;
    transform: translateX(5px);
}
.card-icon {
    width: 60px;
    height: 60px;
    background: #FFF9E6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.card-icon i {
    font-size: 28px;
    color: #D4AF37;
}
.info-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}
.info-card a, .info-card p {
    color: #666;
    text-decoration: none;
    font-size: 0.95rem;
}
.info-card a:hover {
    color: #D4AF37;
}

/* Contact Form */
.contact-form {
    background: #fff;
    padding: 35px;
    border-radius: 24px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}
.contact-form h2 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}
.contact-form h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #D4AF37;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: 0.2s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 0 3px rgba(212,175,55,0.1);
}
.contact-form button {
    width: 100%;
    background: #D4AF37;
    color: #fff;
    border: none;
    padding: 14px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 40px;
    cursor: pointer;
    transition: 0.2s;
}
.contact-form button:hover {
    background: #b8860b;
    transform: translateY(-2px);
}

/* Cities Served */
.cities-serving {
    text-align: center;
    margin: 60px 0;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 20px;
}
.cities-serving h2 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 20px;
}
.city-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}
.city-badges span {
    background: #fff;
    padding: 8px 20px;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #D4AF37;
    border: 1px solid #D4AF37;
    transition: 0.2s;
}
.city-badges span:hover {
    background: #D4AF37;
    color: #fff;
}
.city-note {
    font-size: 0.9rem;
    color: #777;
}

/* Quick Response */
.quick-response {
    display: flex;
    align-items: center;
    gap: 25px;
    background: #FFF9E6;
    border-radius: 24px;
    padding: 30px;
    margin: 60px 0;
    border: 1px solid rgba(212,175,55,0.3);
}
.response-icon i {
    font-size: 54px;
    color: #D4AF37;
}
.response-text h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
}
.response-text p {
    color: #555;
    line-height: 1.5;
}

/* Map Placeholder */
.map-placeholder {
    margin: 60px 0 80px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.map-placeholder iframe {
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-hero {
        padding: 50px 0 30px;
    }
    .contact-hero h1 {
        font-size: 1.8rem;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin: 40px 0;
    }
    .info-card {
        padding: 15px;
    }
    .card-icon {
        width: 50px;
        height: 50px;
    }
    .card-icon i {
        font-size: 24px;
    }
    .contact-form {
        padding: 25px;
    }
    .city-badges span {
        padding: 6px 15px;
        font-size: 0.8rem;
    }
    .quick-response {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 25px;
    }
}
/* Office Location Section */
.office-location {
    margin: 60px 0 80px;
}
.office-location h2 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}
.office-location h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #D4AF37;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.address-card {
    background: #f9f9f9;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    border: 1px solid #eee;
    transition: 0.2s;
}
.address-card:hover {
    border-color: #D4AF37;
    transform: translateY(-3px);
}
.address-icon i {
    font-size: 40px;
    color: #D4AF37;
}
.address-details p {
    margin-bottom: 12px;
    line-height: 1.5;
    color: #555;
}
.address-details strong {
    color: #333;
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}
.map-container iframe {
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .location-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .address-card {
        padding: 20px;
    }
    .address-icon i {
        font-size: 32px;
    }
}
/* Services Page – Professional Styling */
.services-hero {
    background: linear-gradient(135deg, #FFF9E6 0%, #ffffff 100%);
    padding: 70px 0 50px;
    text-align: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}
.services-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}
.services-hero .subheading {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.service-item {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #D4AF37, #F5E7B2);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #D4AF37;
}

.service-item:hover::before {
    transform: scaleX(1);
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 20px;
}
.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.service-item:hover .service-image img {
    transform: scale(1.05);
}

.service-item h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 12px;
}

.service-item p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
}

.service-link {
    display: inline-block;
    color: #D4AF37;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}
.service-link:hover {
    border-bottom-color: #D4AF37;
}

.cta-help {
    text-align: center;
    background: #FFF9E6;
    border-radius: 24px;
    padding: 50px;
    margin: 60px 0 80px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}
.cta-help h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}
.cta-help p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 25px;
}
.btn-primary {
    background: #D4AF37;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 40px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: 0.2s;
}
.btn-primary:hover {
    background: #b8860b;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .services-hero {
        padding: 50px 0 30px;
    }
    .services-hero h1 {
        font-size: 1.8rem;
    }
    .services-grid-full {
        gap: 20px;
    }
    .service-item {
        padding: 20px;
    }
    .service-image {
        height: 160px;
    }
    .cta-help {
        padding: 30px;
    }
}
/* Benefits Section - Professional Gold/White/Black Theme */
.cities-info {
    text-align: center;
    margin: 60px 0;
}

.cities-info h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.cities-info h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #D4AF37;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.benefit {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.benefit:hover {
    transform: translateY(-5px);
    border-color: #D4AF37;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.benefit h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #222;
}

.benefit p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #666;
    margin: 0;
}

/* Optional: If you later replace the ✓ with icons, you can uncomment or modify */
/* .benefit i {
    font-size: 40px;
    color: #D4AF37;
    margin-bottom: 15px;
    display: block;
} */

/* Responsive adjustments */
@media (max-width: 768px) {
    .cities-info {
        margin: 40px 0;
    }
    .cities-info h2 {
        font-size: 1.5rem;
    }
    .benefits-grid {
        gap: 20px;
    }
    .benefit {
        padding: 25px 15px;
    }
    .benefit h4 {
        font-size: 1rem;
    }
}
/* Service Detail Page – Gold/White/Black Theme */
.service-detail-page {
    background: #fff;
    padding: 40px 0 80px;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.service-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #FFF9E6 0%, #fff 100%);
    border-radius: 30px;
    padding: 40px;
}
.service-hero-text h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}
.subheading {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.4;
}
.hero-buttons {
    display: flex;
    gap: 15px;
}
.btn-primary, .btn-outline {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s;
}
.btn-primary {
    background: #D4AF37;
    color: #fff;
    border: 1px solid #D4AF37;
}
.btn-primary:hover {
    background: #b8860b;
    transform: translateY(-2px);
}
.btn-outline {
    background: transparent;
    border: 1px solid #D4AF37;
    color: #D4AF37;
}
.btn-outline:hover {
    background: #D4AF37;
    color: #fff;
}
.service-hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Features Grid */
.features-section {
    margin: 60px 0;
    text-align: center;
}
.features-section h2 {
    font-size: 2rem;
    margin-bottom: 40px;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}
.feature-card {
    background: #f9f9f9;
    padding: 30px 20px;
    border-radius: 20px;
    transition: 0.2s;
    border: 1px solid #eee;
}
.feature-card:hover {
    transform: translateY(-5px);
    border-color: #D4AF37;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.feature-card i {
    font-size: 42px;
    color: #D4AF37;
    margin-bottom: 15px;
}
.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}
.feature-card p {
    color: #666;
}

/* Content Section (Two columns) */
.content-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin: 60px 0;
}
.content-text h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}
.content-text p {
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}
.benefits-list {
    list-style: none;
    padding: 0;
}
.benefits-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.benefits-list i {
    color: #D4AF37;
}
.content-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

/* Process Steps */
.process-section {
    text-align: center;
    margin: 60px 0;
}
.process-section h2 {
    font-size: 2rem;
    margin-bottom: 40px;
}
.steps-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.step {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 30px;
    width: 260px;
    text-align: center;
    transition: 0.2s;
}
.step:hover {
    border-color: #D4AF37;
    transform: translateY(-5px);
}
.step span {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: #D4AF37;
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    line-height: 50px;
    margin-bottom: 20px;
}
.step h3 {
    margin-bottom: 10px;
}
.step p {
    color: #666;
}



/* Final CTA */
.final-cta {
    text-align: center;
    background: linear-gradient(135deg, #f8f8f8 0%, #fff 100%);
    padding: 50px;
    border-radius: 30px;
    margin: 60px 0;
}
.final-cta h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}
.final-cta p {
    margin-bottom: 30px;
    color: #555;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Related Services */
.related-services {
    text-align: center;
    margin-top: 50px;
}
.related-services h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}
.related-links a {
    display: inline-block;
    margin: 0 15px;
    color: #D4AF37;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}
.related-links a:hover {
    border-bottom-color: #D4AF37;
}

/* Responsive */
@media (max-width: 768px) {
    .service-hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 30px;
    }
    .hero-buttons {
        justify-content: center;
    }
    .content-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .steps-container {
        flex-direction: column;
        align-items: center;
    }
    .step {
        width: 100%;
        max-width: 300px;
    }
    .final-cta {
        padding: 30px;
    }
    .final-cta h2 {
        font-size: 1.6rem;
    }
}
/* ============================================
   City Pages - Professional Styling
   Gold / White / Black Theme
   ============================================ */

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.city-hero {
    background: linear-gradient(135deg, #FFF9E6 0%, #ffffff 100%);
    padding: 80px 0 60px;
    text-align: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}
.city-hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}
.city-hero .subheading {
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Intro Grid (Text + Image) */
.city-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin: 70px 0;
}
.intro-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
}
.intro-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}
.intro-image img:hover {
    transform: scale(1.02);
}

/* Services Available Section */
.services-available {
    text-align: center;
    margin: 70px 0;
}
.services-available h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a1a;
}
.services-available h2:after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background: #D4AF37;
    margin: 15px auto 0;
    border-radius: 2px;
}
.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
.service-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}
.service-card i {
    font-size: 48px;
    color: #D4AF37;
    margin-bottom: 15px;
    transition: transform 0.2s;
}
.service-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #222;
}
.service-card p {
    font-size: 0.85rem;
    color: #777;
    line-height: 1.4;
}
.service-card:hover {
    transform: translateY(-8px);
    border-color: #D4AF37;
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.1);
}
.service-card:hover i {
    transform: scale(1.05);
}

/* Coverage Areas */
.coverage-areas {
    background: #fafaf8;
    border-radius: 30px;
    padding: 50px 30px;
    margin: 60px 0;
    text-align: center;
}
.coverage-areas h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: #1a1a1a;
}
.area-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}
.area-group {
    background: #fff;
    border-radius: 24px;
    padding: 25px 30px;
    min-width: 220px;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.03);
    border: 1px solid #eee;
}
.area-group h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #D4AF37;
    border-left: 3px solid #D4AF37;
    padding-left: 12px;
    text-align: left;
}
.area-group span {
    display: inline-block;
    background: #f9f9f9;
    padding: 6px 15px;
    margin: 6px;
    border-radius: 30px;
    font-size: 0.85rem;
    color: #444;
    border: 1px solid #eaeaea;
    transition: 0.2s;
}
.area-group span:hover {
    background: #FFF9E6;
    border-color: #D4AF37;
    color: #D4AF37;
}

/* Why Choose Us */
.why-choose-city {
    background: #FFF9E6;
    border-radius: 30px;
    padding: 60px 40px;
    margin: 60px 0;
    text-align: center;
}
.why-choose-city h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: #1a1a1a;
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}
.benefit {
    background: #fff;
    padding: 15px 20px;
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    border: 1px solid #eee;
    transition: all 0.2s;
}
.benefit i {
    color: #D4AF37;
    font-size: 1.2rem;
}
.benefit:hover {
    transform: translateX(5px);
    border-color: #D4AF37;
    background: #fff;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.05);
}

/* CTA Section */
.city-cta {
    text-align: center;
    background: linear-gradient(135deg, #fff, #fefaf0);
    border-radius: 40px;
    padding: 60px 40px;
    margin: 70px 0 90px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}
.city-cta h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}


/* Responsive */
@media (max-width: 992px) {
    .city-hero h1 {
        font-size: 2.2rem;
    }
    .city-intro-grid {
        gap: 40px;
    }
    .service-cards {
        gap: 20px;
    }
    .area-group {
        min-width: 180px;
        padding: 20px;
    }
}
@media (max-width: 768px) {
    .city-hero {
        padding: 50px 0 30px;
    }
    .city-hero h1 {
        font-size: 1.8rem;
    }
    .city-intro-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin: 40px 0;
    }
    .services-available {
        margin: 40px 0;
    }
    .services-available h2 {
        font-size: 1.8rem;
    }
    .service-cards {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
    .service-card {
        padding: 20px 10px;
    }
    .service-card i {
        font-size: 36px;
    }
    .coverage-areas {
        padding: 30px 20px;
    }
    .area-grid {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .area-group {
        width: 100%;
        max-width: 280px;
    }
    .why-choose-city {
        padding: 40px 20px;
    }
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    .city-cta {
        padding: 40px 20px;
        margin: 40px 0 60px;
    }
    .city-cta h2 {
        font-size: 1.5rem;
    }
}

/* 370px Mobile - 2 columns for benefits */
@media (max-width: 370px) {
    .why-choose-city {
        padding: 30px 15px;
    }
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .benefit {
        padding: 12px 10px;
        font-size: 0.85rem;
        gap: 8px;
        border-radius: 40px;
    }
    .benefit i {
        font-size: 1rem;
    }
    .city-cta {
        padding: 30px 15px;
        margin: 30px 0 40px;
    }
    .city-cta h2 {
        font-size: 1.3rem;
    }
    .cta-buttons {
        gap: 12px;
    }
}
/* ============================================
   Privacy Policy Page - Professional Styling
   Gold / White / Black Theme
   ============================================ */

.privacy-hero {
    background: linear-gradient(135deg, #FFF9E6 0%, #ffffff 100%);
    padding: 70px 0 50px;
    text-align: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}
.privacy-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}
.privacy-hero .effective-date {
    font-size: 1rem;
    color: #D4AF37;
    font-weight: 500;
}

.privacy-content {
    max-width: 900px;
    margin: 60px auto;
}
.privacy-card {
    background: #fff;
    border-radius: 24px;
    padding: 30px 35px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid #f0f0f0;
    transition: all 0.2s;
}
.privacy-card:hover {
    border-color: #D4AF37;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.08);
}
.privacy-card h2 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #222;
    position: relative;
    padding-bottom: 12px;
}
.privacy-card h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #D4AF37;
    border-radius: 2px;
}
.privacy-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}
.privacy-card ul {
    list-style: none;
    padding-left: 0;
}
.privacy-card ul li {
    margin-bottom: 12px;
    font-size: 1rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 12px;
}
.privacy-card ul li i {
    color: #D4AF37;
    width: 22px;
    font-size: 1rem;
}
.highlight {
    background: #FFF9E6;
    padding: 12px 18px;
    border-radius: 12px;
    font-weight: 500;
    color: #D4AF37;
    border-left: 3px solid #D4AF37;
}
.contact-card {
    background: #fafaf8;
    text-align: center;
}
.contact-card h2:after {
    left: 50%;
    transform: translateX(-50%);
}
.contact-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 20px;
}
.contact-info a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    padding: 10px 25px;
    border-radius: 40px;
    text-decoration: none;
    color: #D4AF37;
    font-weight: 500;
    border: 1px solid #D4AF37;
    transition: 0.2s;
}
.contact-info a:hover {
    background: #D4AF37;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .privacy-hero {
        padding: 50px 0 30px;
    }
    .privacy-hero h1 {
        font-size: 2rem;
    }
    .privacy-content {
        margin: 40px auto;
    }
    .privacy-card {
        padding: 20px 25px;
    }
    .privacy-card h2 {
        font-size: 1.4rem;
    }
    .contact-info {
        gap: 15px;
    }
    .contact-info a {
        padding: 8px 18px;
        font-size: 0.9rem;
    }
}




/* Tablet adjustments */


/* ===== BLOG STYLES ===== */
.blog-listing, .blog-detail, .blog-category-page {
    background: #fff;
    padding: 60px 0;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.blog-header, .category-header {
    text-align: center;
    margin-bottom: 50px;
}
.blog-header h1, .category-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}
.gold-line {
    width: 70px;
    height: 3px;
    background: #D4AF37;
    margin: 0 auto 15px;
    border-radius: 2px;
}
.subtitle {
    color: #666;
    font-size: 1rem;
}
.blog-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 50px;
}
.cat-link {
    background: #f5f5f5;
    padding: 6px 18px;
    border-radius: 30px;
    text-decoration: none;
    color: #333;
    font-size: 0.9rem;
    transition: 0.2s;
}
.cat-link.active, .cat-link:hover {
    background: #D4AF37;
    color: #fff;
}
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}
.post-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: all 0.3s;
    border: 1px solid #eee;
}
.post-card:hover {
    transform: translateY(-6px);
    border-color: #D4AF37;
    box-shadow: 0 15px 30px rgba(212,175,55,0.1);
}
.post-image {
    height: 200px;
    overflow: hidden;
}
.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.post-card:hover .post-image img {
    transform: scale(1.05);
}
.post-content {
    padding: 20px;
}
.post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.8rem;
}
.post-category {
    background: #FFF9E6;
    color: #D4AF37;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 500;
}
.post-date {
    color: #888;
}
.post-content h2 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}
.post-content h2 a {
    text-decoration: none;
    color: #222;
    transition: color 0.2s;
}
.post-content h2 a:hover {
    color: #D4AF37;
}
.post-content p {
    color: #555;
    line-height: 1.5;
    margin-bottom: 15px;
}
.read-more {
    display: inline-block;
    color: #D4AF37;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: 0.2s;
}
.read-more:hover {
    border-bottom-color: #D4AF37;
}

/* Detail page */
.blog-detail {
    padding: 60px 0;
}
.post-article {
    max-width: 800px;
    margin: 0 auto;
}
.post-hero-image {
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 30px;
}
.post-hero-image img {
    width: 100%;
    height: auto;
}
.post-header {
    text-align: center;
    margin-bottom: 30px;
}
.post-header h1 {
    font-size: 2rem;
    color: #222;
    margin-top: 10px;
}
.post-body {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
}
.post-body h2, .post-body h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: #1a1a1a;
}
.post-body p {
    margin-bottom: 20px;
}
.post-body ul, .post-body ol {
    margin-bottom: 20px;
    padding-left: 20px;
}
.post-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    text-align: center;
}
.share-links span {
    margin-right: 15px;
    color: #555;
}
.share-links a {
    display: inline-block;
    width: 36px;
    height: 36px;
    background: #f5f5f5;
    border-radius: 50%;
    color: #D4AF37;
    margin: 0 5px;
    line-height: 36px;
    transition: 0.2s;
}
.share-links a:hover {
    background: #D4AF37;
    color: #fff;
}
.related-posts {
    margin-top: 60px;
}
.related-posts h3 {
    text-align: center;
    margin-bottom: 30px;
}
.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}
.related-card {
    background: #f9f9f9;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    transition: 0.2s;
}
.related-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}
.related-card h4 {
    padding: 15px;
    font-size: 1rem;
    color: #222;
}
.related-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .blog-header h1, .category-header h1 {
        font-size: 2rem;
    }
    .posts-grid {
        grid-template-columns: 1fr;
    }
    .post-header h1 {
        font-size: 1.6rem;
    }
}
    .post-body h2 {
        font-size: 1.4rem;
    }
    .post-body h3 {
        font-size: 1.2rem;
    }
}

/* ===== Cities Section – Professional Gold Theme (Black Icons) ===== */



/* Fix for page content being cut off on the left */
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;  /* prevent horizontal scroll */
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;  /* ensure inner spacing */
    box-sizing: border-box;
}

/* Make sure all sections respect container */
section, .page-main, .service-detail-page, .city-page, .blog-listing, .blog-detail {
    width: 100%;
    overflow-x: hidden;
}

/* Fix any element with negative margin */
* {
    box-sizing: border-box;
}

/* If any slider or row uses negative margin, adjust */
.row, .slider-container, .testimonials-slider {
    margin-left: 0 !important;
    margin-right: 0 !important;
}
/* ============================================
   Footer - Gold/White/Black Theme
   Professional & Responsive
   ============================================ */
/* ============================================
   Footer - Light Golden Theme
   Mobile: 2 Columns | Animations | Gold Accents
   ============================================ */

.footer {
    background: linear-gradient(135deg, #E8D580 0%, #D4AF37 100%);
    color: #2a2a2a;
    padding-top: 60px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

/* Subtle gold pattern overlay */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.1) 1px, transparent 1px);
    background-size: 35px 35px;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Footer Grid - Desktop: 5 columns, Mobile: 2 columns */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

/* Mobile: 2 columns */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
    }
}

/* Tablet: 3 columns */
@media (min-width: 769px) and (max-width: 1023px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Footer Columns */
.footer-col h4 {
    color: #1a1a1a;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 35px;
    height: 2px;
    background: #545704fd;
    transition: width 0.3s ease;
}
.footer-col:hover h4::after {
    width: 55px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-col ul li {
    margin-bottom: 10px;
}
.footer-col ul li a {
    color: #5a5a5a;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
}
.footer-col ul li a i {
    font-size: 0.7rem;
    color: #D4AF37;
    transition: transform 0.2s;
}
.footer-col ul li a:hover {
    color: #D4AF37;
    transform: translateX(5px);
}
.footer-col ul li a:hover i {
    transform: translateX(3px);
}

/* Brand Column */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}
.logo-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(212, 175, 55, 0.4);
}
.logo-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.logo-text span:first-child {
    font-size: 1.2rem;
    font-weight: 800;
    color: #D4AF37;
    line-height: 1.2;
}
.logo-text span:last-child {
    font-size: 0.75rem;
    color: #777;
}
.footer-desc {
    font-size: 0.8rem;
    line-height: 1.5;
    margin-bottom: 20px;
    color: #666;
    font-weight: 600;
}

/* Social Links */
.footer-social {
    display: flex;
    gap: 12px;
}
.social-link {
    width: 36px;
    height: 36px;
    background: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4AF37;
    transition: all 0.3s;
}
.social-link:hover {
    background: #D4AF37;
    color: #fff;
    transform: translateY(-4px);
    border-color: #D4AF37;
}

/* Contact Column */
.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.85rem;
}
.contact-item i {
    width: 25px;
    color: #D4AF37;
}
.contact-item a, .contact-item span {
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
}
.contact-item a:hover {
    color: #D4AF37;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 18px 0;
    text-align: center;
}
.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}
.footer-bottom p {
    font-size: 0.75rem;
    color: #777;
    margin: 0;
}
.badges {
    display: flex;
    gap: 20px;
}
.badges span {
    font-size: 0.7rem;
    color: #777;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.badges span i {
    color: #D4AF37;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: #D4AF37;
    color: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    background: #b8860b;
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 8px 18px rgba(212, 175, 55, 0.3);
}

/* Mobile specific: adjust alignment and spacing */
@media (max-width: 768px) {
    .footer {
        padding-top: 40px;
    }
    .footer-col {
        text-align: center;
    }
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-col ul li a {
        justify-content: center;
    }
    .footer-logo {
        justify-content: center;
    }
    .footer-social {
        justify-content: center;
    }
    .contact-item {
        justify-content: center;
    }
    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
    }
    .badges {
        justify-content: center;
    }
    .back-to-top {
        width: 38px;
        height: 38px;
        bottom: 20px;
        right: 20px;
    }
}

/* Very small devices (≤480px) - keep 2 columns but reduce gap */
@media (max-width: 480px) {
    .footer-grid {
        gap: 20px;
    }
    .footer-col h4 {
        font-size: 1rem;
    }
    .footer-desc {
        font-size: 0.75rem;
    }
}
/* ============================================
   About Us Section - Next Level Premium Design
   Animations | Gold/White/Black Theme
   ============================================ */

.about-home {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #FFF9E6 100%);
    position: relative;
    overflow: hidden;
}

/* Subtle background decoration */
.about-home::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Content animations */
.about-content {
    animation: fadeInLeft 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1) forwards;
}
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.title-border {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #D4AF37, #FFE68F);
    margin: 0 0 25px 0;
    border-radius: 2px;
    animation: expandWidth 0.8s 0.2s backwards;
}
@keyframes expandWidth {
    from { width: 0; opacity: 0; }
    to { width: 80px; opacity: 1; }
}

.about-intro {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 30px;
}

/* Stats section */
.about-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}
.stat {
    text-align: center;
    flex: 1;
    min-width: 80px;
    transition: all 0.3s;
}
.stat:hover {
    transform: translateY(-5px);
}
.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #D4AF37;
    line-height: 1.2;
    transition: transform 0.2s;
}
.stat:hover .stat-number {
    transform: scale(1.05);
}
.stat-label {
    font-size: 0.8rem;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Features grid */
.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 35px;
}
.feature {
    font-size: 0.9rem;
    color: #444;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    transition: all 0.2s;
}
.feature i {
    color: #D4AF37;
    font-size: 1rem;
    transition: transform 0.2s;
}
.feature:hover {
    transform: translateX(5px);
}
.feature:hover i {
    transform: scale(1.1);
}

/* Button */
.btn-about {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #D4AF37, #FFD966);
    color: #1a1a1a;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}
.btn-about:hover {
    transform: translateX(5px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.35);
    background: linear-gradient(135deg, #FFD966, #D4AF37);
}

/* Image side */
.about-image {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.05);
    animation: fadeInRight 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1) forwards;
}
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}
.about-image:hover img {
    transform: scale(1.03);
}
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), transparent);
    pointer-events: none;
    transition: opacity 0.3s;
}
.about-image:hover .image-overlay {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.25), transparent);
}

/* Responsive */
@media (max-width: 992px) {
    .about-grid {
        gap: 40px;
    }
    .about-content h2 {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .about-home {
        padding: 60px 0;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .title-border {
        margin: 0 auto 25px;
    }
    .about-stats {
        justify-content: center;
    }
    .about-features {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }
    .btn-about {
        margin: 0 auto;
    }
    .about-image {
        max-width: 500px;
        margin: 0 auto;
    }
}
@media (max-width: 480px) {
    .about-features {
        grid-template-columns: 1fr;
    }
    .stat-number {
        font-size: 1.5rem;
    }
}













/* ============================================
   Testimonials Section - Multi‑Card Slider
   Mobile: 1 card | Tablet: 2 cards | Desktop: 3 cards
   ============================================ */

.testimonials {
    background: #FFF9E6;
    padding: 70px 0;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonials-head {
    text-align: center;
    margin-bottom: 50px;
}
.testimonials-head h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}
.gold-line {
    width: 70px;
    height: 3px;
    background: #D4AF37;
    margin: 0 auto;
    border-radius: 2px;
}

/* Slider container */
.testimonials-slider {
    position: relative;
    overflow: hidden;
    margin: 0 -20px;
    padding: 20px 20px 30px;
}
.slider-container {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    gap: 24px;  /* consistent gap between cards */
    padding: 0;
}

/* Card width: responsive */
.testimonial-card {
    flex: 0 0 100%;  /* mobile: 1 card full width */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

/* Tablet: 2 cards */
@media (min-width: 768px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 12px);
    }
}

/* Desktop: 3 cards */
@media (min-width: 1024px) {
    .testimonial-card {
        flex: 0 0 calc(33.333% - 16px);
    }
}

/* Card inner design */
.testimonial-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 28px 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}
.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: #D4AF37;
    box-shadow: 0 20px 35px rgba(212, 175, 55, 0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}
.avatar i {
    font-size: 52px;
    color: #000000;
}
.user-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 4px;
    color: #222;
}
.user-info .date {
    font-size: 0.75rem;
    color: #888;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 20px;
    flex-grow: 1;
}
.stars i {
    color: #D4AF37;
    font-size: 0.9rem;
    margin-right: 2px;
}
.stars i.fa-star-o {
    color: #ddd;
}

/* Slider controls */
.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 20px;
}
.slider-prev, .slider-next {
    background: #ffffff;
    border: 1px solid #D4AF37;
    color: #D4AF37;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
}
.slider-prev:hover, .slider-next:hover {
    background: #D4AF37;
    color: #fff;
}
.slider-dots {
    display: flex;
    gap: 10px;
}
.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: 0.2s;
}
.dot.active {
    background: #D4AF37;
    width: 24px;
    border-radius: 4px;
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .testimonials {
        padding: 50px 0;
    }
    .testimonials-head h2 {
        font-size: 1.8rem;
    }
    .testimonial-card {
        padding: 20px 18px;
    }
    .avatar i {
        font-size: 42px;
    }
    .testimonial-text {
        font-size: 0.85rem;
    }

}


/* ============================================
   Cities Section - Light Golden Cards, Rounded Images
   Mobile: 1 card (max-width 370px), Desktop: 3 cards
   ============================================ */

.cities-section {
    padding: 80px 0;
    background: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}
.section-header h2:after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background: #D4AF37;
    margin: 15px auto 0;
    border-radius: 2px;
}
.section-subtitle {
    font-size: 1rem;
    color: #666;
    max-width: 600px;
    margin: 10px auto 0;
}

/* Grid: 1 column on mobile, 3 on desktop */
.cities-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .cities-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

/* Card - light golden background, small, rounded */
.city-card {
    background: #FFF9E6;   /* light golden */
    border-radius: 28px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    border: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    max-width: 370px;       /* small card size */
    margin: 0 auto;         /* center on mobile */
    width: 100%;
}
@media (min-width: 768px) {
    .city-card {
        max-width: none;     /* allow natural width in grid */
    }
}

/* Image - with corner curve */
.city-image {
    width: 100%;
    height: 150px;          /* small image height */
    overflow: hidden;
    border-radius: 28px 28px 0 0;  /* curved top corners */
}
.city-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.city-card:hover .city-image img {
    transform: scale(1.03);
}

/* Content area */
.city-content {
    padding: 18px 16px 20px;
    text-align: center;
}
.city-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 10px;
}

/* Service areas */
.city-areas {
    margin-bottom: 18px;
}
.areas-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(212, 175, 55, 0.15);
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
}
.city-coverage {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

/* Button */
.city-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #D4AF37;
    color: #fff;
    padding: 8px 24px;
    text-decoration: none;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.2s;
    border: none;
}
.city-btn i {
    font-size: 0.7rem;
    transition: transform 0.2s;
}
.city-btn:hover {
    background: #b8860b;
    transform: translateX(3px);
}
.city-btn:hover i {
    transform: translateX(3px);
}

/* Mobile: adjust sizes */
@media (max-width: 768px) {
    .cities-section {
        padding: 50px 0;
    }
    .section-header h2 {
        font-size: 1.8rem;
    }
    .city-image {
        height: 130px;
    }
    .city-content {
        padding: 16px 14px 18px;
    }
    .city-content h3 {
        font-size: 1.2rem;
    }
    .city-coverage {
        font-size: 0.8rem;
    }
    .city-btn {
        padding: 6px 20px;
        font-size: 0.8rem;
    }
}

/* Very small devices (max-width: 480px) */
@media (max-width: 480px) {
    .city-card {
        max-width: 340px;   /* even smaller on tiny screens */
    }
    .city-image {
        height: 120px;
    }
    .city-content h3 {
        font-size: 1rem;
    }
    .city-coverage {
        font-size: 0.75rem;
    }
}

/* ============================================
   Al Noor Services Section - Unique Class Names
   Gold/White/Black Theme, Responsive Grid
   ============================================ */

.alnoor-services-page {
    background: #ffffff;
}

/* Hero Section */
.alnoor-services-hero {
    background: linear-gradient(135deg, #FFF9E6 0%, #ffffff 100%);
    padding: 70px 0 50px;
    text-align: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}
.alnoor-services-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}
.alnoor-services-hero .subheading {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Grid Section */
.alnoor-services-grid-section {
    padding: 80px 0;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Header */
.alnoor-section-header {
    text-align: center;
    margin-bottom: 60px;
}
.alnoor-section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}
.alnoor-gold-line {
    width: 70px;
    height: 3px;
    background: #D4AF37;
    margin: 0 auto 15px;
    border-radius: 2px;
}
.alnoor-section-intro {
    font-size: 1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Grid - Responsive */
.alnoor-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
@media (min-width: 768px) {
    .alnoor-services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (min-width: 1024px) {
    .alnoor-services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Service Card */
.alnoor-service-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    border: 1px solid #f0f0f0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.alnoor-service-card:hover {
    transform: translateY(-8px);
    border-color: #D4AF37;
    box-shadow: 0 20px 35px rgba(212, 175, 55, 0.1);
}

/* Image Wrapper */
.alnoor-service-image-wrapper {
    width: 100%;
    height: 180px;
    overflow: hidden;
}
.alnoor-service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.alnoor-service-card:hover .alnoor-service-image {
    transform: scale(1.05);
}

/* Card Content */
.alnoor-service-card-content {
    padding: 20px 18px 24px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.alnoor-service-card-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}
.alnoor-service-short-desc {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 12px;
}
.alnoor-service-details {
    font-size: 0.75rem;
    color: #777;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Button */
.alnoor-service-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #D4AF37;
    color: #fff;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.2s;
    margin-top: auto;
}
.alnoor-service-btn:hover {
    background: #b8860b;
    transform: translateX(3px);
}
.alnoor-service-btn i {
    transition: transform 0.2s;
}
.alnoor-service-btn:hover i {
    transform: translateX(3px);
}

/* Mobile Adjustments */
@media (max-width: 767px) {
    .alnoor-services-grid-section {
        padding: 50px 0;
    }
    .alnoor-services-hero h1 {
        font-size: 1.8rem;
    }
    .alnoor-services-grid {
        gap: 20px;
    }
    .alnoor-service-image-wrapper {
        height: 150px;
    }
    .alnoor-service-card-content {
        padding: 16px 14px 20px;
    }
    .alnoor-service-card-content h3 {
        font-size: 1.1rem;
    }
    .alnoor-service-short-desc {
        font-size: 0.8rem;
    }
    .alnoor-service-details {
        font-size: 0.7rem;
    }
    .alnoor-service-btn {
        padding: 6px 14px;
        font-size: 0.75rem;
    }
}

/* Very Small Devices */
@media (max-width: 480px) {
    .alnoor-service-image-wrapper {
        height: 130px;
    }
    .alnoor-service-card-content {
        padding: 14px 12px 16px;
    }
}

/* ============================================
   Value Proposition Section - Text + Cards
   Gold/White/Black Theme
   ============================================ */

.alnoor-value-section {
    padding: 80px 0;
    background: #ffffff;
}

.alnoor-value-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}
.alnoor-value-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}
.alnoor-gold-line {
    width: 70px;
    height: 3px;
    background: #D4AF37;
    margin: 0 auto 20px;
    border-radius: 2px;
}
.alnoor-value-subtitle {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Grid */
.alnoor-value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Cards */
.alnoor-value-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    border: 1px solid #f0f0f0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02);
}
.alnoor-value-card:hover {
    transform: translateY(-6px);
    border-color: #D4AF37;
    box-shadow: 0 20px 35px rgba(212, 175, 55, 0.1);
}
.alnoor-value-icon {
    margin-bottom: 20px;
}
.alnoor-value-icon i {
    font-size: 48px;
    color: #D4AF37;
    transition: transform 0.2s;
}
.alnoor-value-card:hover .alnoor-value-icon i {
    transform: scale(1.08);
}
.alnoor-value-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}
.alnoor-value-card p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .alnoor-value-section {
        padding: 50px 0;
    }
    .alnoor-value-header h2 {
        font-size: 1.8rem;
    }
    .alnoor-value-grid {
        gap: 20px;
    }
    .alnoor-value-card {
        padding: 24px 18px;
    }
    .alnoor-value-icon i {
        font-size: 40px;
    }
    .alnoor-value-card h3 {
        font-size: 1.2rem;
    }
}


/* ============================================
   Service Detail Page - Professional Design
   Gold/White/Black Theme | Responsive | Animated
   ============================================ */

/* ---------- Base ---------- */
.service-detail-page {
    background: #ffffff;
    padding: 40px 0 80px;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---------- Hero Section (2 columns) ---------- */
.service-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    background: linear-gradient(135deg, #FFF9E6 0%, #ffffff 100%);
    border-radius: 32px;
    padding: 50px;
    margin-bottom: 70px;
}
.service-hero-text h1 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 20px;
}
.service-hero-text .subheading {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 30px;
}
.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.btn-primary, .btn-outline {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}
.btn-primary {
    background: #D4AF37;
    color: #fff;
    border: 1px solid #D4AF37;
}
.btn-primary:hover {
    background: #b8860b;
    transform: translateY(-2px);
}
.btn-outline {
    background: transparent;
    border: 1px solid #D4AF37;
    color: #D4AF37;
}
.btn-outline:hover {
    background: #D4AF37;
    color: #fff;
    transform: translateY(-2px);
}
.service-hero-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}
.service-hero-image img:hover {
    transform: scale(1.02);
}

/* ---------- Features Section (icon cards) ---------- */
.features-section {
    margin: 70px 0;
    text-align: center;
}
.features-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}
.features-section h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #D4AF37;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 20px;
}
.feature-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid #f0f0f0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}
.feature-card:hover {
    transform: translateY(-6px);
    border-color: #D4AF37;
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.1);
}
.feature-card i {
    font-size: 48px;
    color: #D4AF37;
    margin-bottom: 20px;
    display: inline-block;
}
.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.feature-card p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
}

/* ---------- Content Section (text + image) ---------- */
.content-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin: 70px 0;
}
.content-text h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.content-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 20px;
}
.benefits-list {
    list-style: none;
    padding: 0;
}
.benefits-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #444;
}
.benefits-list i {
    color: #D4AF37;
    width: 20px;
}
.content-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

/* ---------- Process Steps ---------- */
.process-section {
    text-align: center;
    margin: 70px 0;
}
.process-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
}
.steps-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.step {
    background: #ffffff;
    border-radius: 24px;
    padding: 30px 20px;
    width: 260px;
    text-align: center;
    transition: 0.2s;
    border: 1px solid #eee;
}
.step:hover {
    transform: translateY(-5px);
    border-color: #D4AF37;
}
.step span {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: #D4AF37;
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    line-height: 50px;
    margin-bottom: 20px;
}
.step h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}
.step p {
    color: #666;
    font-size: 0.85rem;
}

/* ---------- Why Choose / Trust Grid ---------- */
.why-choose-section {
    background: #FFF9E6;
    border-radius: 32px;
    padding: 50px 30px;
    text-align: center;
    margin: 70px 0;
}
.why-choose-section h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}
.trust-item {
    background: #ffffff;
    padding: 14px 18px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid #eee;
}
.trust-item i {
    color: #D4AF37;
}

/* ---------- Final CTA ---------- */
.final-cta {
    text-align: center;
    background: #ffffff;
    border: 1px solid #eee;
    border-radius: 32px;
    padding: 50px;
    margin: 70px 0 50px;
}
.final-cta h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}
.final-cta p {
    margin-bottom: 30px;
    color: #555;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ---------- Related Services ---------- */
.related-services {
    text-align: center;
    margin-top: 30px;
}
.related-services h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}
.related-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}
.related-links a {
    color: #D4AF37;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: 0.2s;
}
.related-links a:hover {
    border-bottom-color: #D4AF37;
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
    .service-hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px;
    }
    .hero-buttons {
        justify-content: center;
    }
    .content-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .steps-container {
        flex-direction: column;
        align-items: center;
    }
    .step {
        width: 100%;
        max-width: 300px;
    }
}
@media (max-width: 768px) {
    .service-detail-page {
        padding: 20px 0 50px;
    }
    .service-hero {
        padding: 30px 20px;
    }
    .service-hero-text h1 {
        font-size: 1.6rem;
    }
    .features-section h2, .process-section h2 {
        font-size: 1.6rem;
    }
    .content-text h2 {
        font-size: 1.4rem;
    }
    .why-choose-section {
        padding: 30px 20px;
    }
    .trust-grid {
        grid-template-columns: 1fr;
    }
    .final-cta {
        padding: 30px;
    }
    .final-cta h2 {
        font-size: 1.5rem;
    }
}

/* ============================================
   City Page - Benefits Section
   Gold/White/Black Theme | Responsive Grid
   ============================================ */

.alnoor-city-benefits {
    padding: 60px 0;
    background: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.alnoor-city-benefits-header {
    text-align: center;
    margin-bottom: 50px;
}
.alnoor-city-benefits-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}
.alnoor-gold-line {
    width: 70px;
    height: 3px;
    background: #D4AF37;
    margin: 0 auto 20px;
    border-radius: 2px;
}
.alnoor-city-benefits-subtitle {
    font-size: 1rem;
    color: #555;
    max-width: 650px;
    margin: 0 auto;
}

.alnoor-city-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.alnoor-city-benefit-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    border: 1px solid #f0f0f0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02);
}
.alnoor-city-benefit-card:hover {
    transform: translateY(-6px);
    border-color: #D4AF37;
    box-shadow: 0 20px 35px rgba(212, 175, 55, 0.1);
}

.alnoor-city-benefit-icon {
    margin-bottom: 20px;
}
.alnoor-city-benefit-icon i {
    font-size: 48px;
    color: #D4AF37;
    transition: transform 0.2s;
}
.alnoor-city-benefit-card:hover .alnoor-city-benefit-icon i {
    transform: scale(1.08);
}

.alnoor-city-benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}
.alnoor-city-benefit-card p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
    margin: 0;
}
.alnoor-city-benefit-card strong {
    color: #D4AF37;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    .alnoor-city-benefits {
        padding: 40px 0;
    }
    .alnoor-city-benefits-header h2 {
        font-size: 1.6rem;
    }
    .alnoor-city-benefits-grid {
        gap: 20px;
    }
    .alnoor-city-benefit-card {
        padding: 24px 18px;
    }
    .alnoor-city-benefit-icon i {
        font-size: 40px;
    }
    .alnoor-city-benefit-card h3 {
        font-size: 1.2rem;
    }
}

/* ============================================
   City Page - Benefits Section
   Gold/White/Black Theme | Responsive Grid
   ============================================ */

.alnoor-city-benefits {
    padding: 60px 0;
    background: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.alnoor-city-benefits-header {
    text-align: center;
    margin-bottom: 50px;
}
.alnoor-city-benefits-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}
.alnoor-gold-line {
    width: 70px;
    height: 3px;
    background: #D4AF37;
    margin: 0 auto 20px;
    border-radius: 2px;
}
.alnoor-city-benefits-subtitle {
    font-size: 1rem;
    color: #555;
    max-width: 650px;
    margin: 0 auto;
}

.alnoor-city-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.alnoor-city-benefit-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    border: 1px solid #f0f0f0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02);
}
.alnoor-city-benefit-card:hover {
    transform: translateY(-6px);
    border-color: #D4AF37;
    box-shadow: 0 20px 35px rgba(212, 175, 55, 0.1);
}

.alnoor-city-benefit-icon {
    margin-bottom: 20px;
}
.alnoor-city-benefit-icon i {
    font-size: 48px;
    color: #D4AF37;
    transition: transform 0.2s;
}
.alnoor-city-benefit-card:hover .alnoor-city-benefit-icon i {
    transform: scale(1.08);
}

.alnoor-city-benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}
.alnoor-city-benefit-card p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
    margin: 0;
}
.alnoor-city-benefit-card strong {
    color: #D4AF37;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    .alnoor-city-benefits {
        padding: 40px 0;
    }
    .alnoor-city-benefits-header h2 {
        font-size: 1.6rem;
    }
    .alnoor-city-benefits-grid {
        gap: 20px;
    }
    .alnoor-city-benefit-card {
        padding: 24px 18px;
    }
    .alnoor-city-benefit-icon i {
        font-size: 40px;
    }
    .alnoor-city-benefit-card h3 {
        font-size: 1.2rem;
    }
}

/* ============================================
   About Hero Section - Premium Design
   Gold/White/Black Theme | Animated | Responsive
   ============================================ */

.about-hero {
    position: relative;
    background: linear-gradient(135deg, #FFF9E6 0%, #ffffff 70%);
    padding: 100px 0 80px;
    text-align: center;
    overflow: hidden;
    isolation: isolate;
}

/* Subtle decorative pattern overlay */
.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 40%, rgba(212, 175, 55, 0.03) 2px, transparent 2px);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 0;
}

/* Soft gold glow at the top */
.about-hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(ellipse at 30% 40%, rgba(212, 175, 55, 0.08), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.about-hero .container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    line-height: 1.2;
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1) forwards;
}

.about-hero .tagline {
    font-size: 1.2rem;
    color: #4a4a4a;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
    animation: fadeInUp 0.8s 0.1s cubic-bezier(0.2, 0.9, 0.4, 1.1) forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}

/* Gold underline effect */
.about-hero h1:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #D4AF37;
    margin: 25px auto 0;
    border-radius: 2px;
    animation: expandWidth 0.6s 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1) forwards;
    transform: scaleX(0);
    transform-origin: center;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes expandWidth {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .about-hero {
        padding: 70px 0 50px;
    }
    .about-hero h1 {
        font-size: 2rem;
    }
    .about-hero .tagline {
        font-size: 1rem;
    }
    .about-hero h1:after {
        width: 60px;
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 50px 0 40px;
    }
    .about-hero h1 {
        font-size: 1.6rem;
    }
}

/* ============================================
   Contact Hero Section - Premium & Attractive
   Gold/White/Black Theme | Animated | Responsive
   ============================================ */

.contact-hero {
    position: relative;
    background: linear-gradient(145deg, #FFF9E6 0%, #ffffff 85%);
    padding: 100px 0 80px;
    text-align: center;
    overflow: hidden;
    isolation: isolate;
}

/* Decorative floating envelope pattern */
.contact-hero::before {
    content: '✉️';
    position: absolute;
    font-size: 220px;
    opacity: 0.04;
    bottom: -50px;
    right: -50px;
    transform: rotate(-10deg);
    pointer-events: none;
    z-index: 0;
    font-family: monospace;
}

/* Second subtle icon (chat bubble) */
.contact-hero::after {
    content: '💬';
    position: absolute;
    font-size: 160px;
    opacity: 0.03;
    top: -30px;
    left: -40px;
    transform: rotate(15deg);
    pointer-events: none;
    z-index: 0;
}

/* Soft gold radial glow */
.contact-hero .glow-bg {
    position: absolute;
    top: -30%;
    left: -10%;
    width: 120%;
    height: 150%;
    background: radial-gradient(ellipse at 30% 40%, rgba(212, 175, 55, 0.06), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.contact-hero .container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    line-height: 1.2;
    animation: slideUpFade 0.7s cubic-bezier(0.2, 0.9, 0.4, 1.1) forwards;
}

.contact-hero .tagline {
    font-size: 1.2rem;
    color: #4a4a4a;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
    animation: slideUpFade 0.7s 0.1s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}

/* Gold underline with icon */
.contact-hero h1:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #D4AF37;
    margin: 25px auto 0;
    border-radius: 2px;
    animation: expandWidth 0.6s 0.2s cubic-bezier(0.2, 0.9, 0.4, 1.1) forwards;
    transform: scaleX(0);
    transform-origin: center;
}

/* Add a small phone/chat icon next to heading (optional) */
.contact-hero h1 i {
    font-size: 0.9em;
    color: #D4AF37;
    margin-right: 10px;
    display: inline-block;
    animation: pulseIcon 1.5s infinite;
}

/* Animations */
@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(35px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes expandWidth {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

@keyframes pulseIcon {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

/* Responsive */
@media (max-width: 768px) {
    .contact-hero {
        padding: 70px 0 50px;
    }
    .contact-hero h1 {
        font-size: 2rem;
    }
    .contact-hero .tagline {
        font-size: 1rem;
    }
    .contact-hero h1:after {
        width: 60px;
        margin-top: 20px;
    }
    .contact-hero::before {
        font-size: 140px;
        bottom: -30px;
        right: -30px;
    }
    .contact-hero::after {
        font-size: 100px;
        top: -20px;
        left: -20px;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 50px 0 40px;
    }
    .contact-hero h1 {
        font-size: 1.6rem;
    }
    .contact-hero::before {
        font-size: 100px;
    }
    .contact-hero::after {
        font-size: 80px;
    }
}


/* ============================================
   Contact Page - Premium Animated CSS
   Gold/White/Black Theme | Next Level Design
   ============================================ */

/* ---------- Contact Grid (2 columns) ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin: 60px 0;
}

/* Contact Info Cards (left side) */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #ffffff;
    padding: 25px;
    border-radius: 28px;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    border: 1px solid #f0f0f0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}
.info-card:hover {
    transform: translateX(8px) translateY(-3px);
    border-color: #D4AF37;
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.12);
}
.card-icon {
    width: 60px;
    height: 60px;
    background: #FFF9E6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
.card-icon i {
    font-size: 28px;
    color: #D4AF37;
    transition: transform 0.2s;
}
.info-card:hover .card-icon i {
    transform: scale(1.1);
}
.info-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #1a1a1a;
}
.info-card a, .info-card p {
    color: #555;
    text-decoration: none;
    font-size: 0.95rem;
}
.info-card a:hover {
    color: #D4AF37;
}

/* Contact Form (right side) */
.contact-form {
    background: #ffffff;
    padding: 40px 35px;
    border-radius: 32px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
    border: 1px solid #f0f0f0;
    transition: transform 0.3s;
}
.contact-form:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
}
.contact-form h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}
.contact-form h2:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: #D4AF37;
    border-radius: 2px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    font-size: 0.95rem;
    transition: all 0.2s;
    background: #fefefe;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}
.contact-form button {
    width: 100%;
    background: #D4AF37;
    color: #fff;
    border: none;
    padding: 14px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s;
}
.contact-form button:hover {
    background: #b8860b;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(184, 134, 11, 0.2);
}

/* Cities Served Section */
.cities-serving {
    text-align: center;
    margin: 60px 0;
    padding: 40px 20px;
    background: linear-gradient(135deg, #FFF9E6, #ffffff);
    border-radius: 40px;
}
.cities-serving h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
}
.city-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}
.city-badges span {
    background: #fff;
    padding: 10px 28px;
    border-radius: 60px;
    font-size: 1rem;
    font-weight: 600;
    color: #D4AF37;
    border: 1px solid #D4AF37;
    transition: all 0.3s;
    cursor: default;
}
.city-badges span:hover {
    background: #D4AF37;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(212, 175, 55, 0.3);
}
.city-note {
    font-size: 0.9rem;
    color: #666;
}

/* Quick Response Banner */
.quick-response {
    display: flex;
    align-items: center;
    gap: 30px;
    background: #ffffff;
    border-radius: 32px;
    padding: 35px 40px;
    margin: 60px 0;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.02);
    transition: all 0.3s;
}
.quick-response:hover {
    border-color: #D4AF37;
    transform: scale(1.01);
}
.response-icon i {
    font-size: 64px;
    color: #D4AF37;
    animation: pulse 1.8s infinite;
}
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.08); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}
.response-text h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.response-text p {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
}

/* Office Location Section */
.office-location {
    margin: 70px 0 90px;
}
.office-location h2 {
    text-align: center;
    font-size: 1.9rem;
    font-weight: 700;
    margin-bottom: 40px;
}
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.address-card {
    background: #FFF9E6;
    border-radius: 28px;
    padding: 35px;
    display: flex;
    gap: 20px;
    transition: all 0.3s;
    border: 1px solid rgba(212, 175, 55, 0.2);
}
.address-card:hover {
    transform: translateY(-5px);
    border-color: #D4AF37;
    box-shadow: 0 20px 35px rgba(212, 175, 55, 0.1);
}
.address-icon i {
    font-size: 48px;
    color: #D4AF37;
}
.address-details p {
    margin-bottom: 12px;
    color: #444;
    line-height: 1.5;
}
.address-details strong {
    color: #1a1a1a;
}
.map-container {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}
.map-container:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .location-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .quick-response {
        flex-direction: column;
        text-align: center;
    }
}
@media (max-width: 768px) {
    .contact-form {
        padding: 30px 20px;
    }
    .city-badges span {
        padding: 8px 20px;
        font-size: 0.85rem;
    }
    .response-text h3 {
        font-size: 1.3rem;
    }
    .address-card {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================
   City Page (Islamabad) - Premium Animated CSS
   Gold / White / Black Theme | Responsive
   ============================================ */

/* ---------- Global ---------- */
.city-page {
    background: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---------- Hero Section ---------- */
.city-hero {
    background: linear-gradient(135deg, #FFF9E6 0%, #ffffff 100%);
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.city-hero::before {
    content: '🏙️';
    position: absolute;
    font-size: 220px;
    opacity: 0.04;
    bottom: -50px;
    right: -50px;
    transform: rotate(-10deg);
    pointer-events: none;
}
.city-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #D4AF37;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out;
}
.city-hero .subheading {
    font-size: 1.2rem;
    color: #F5E7B2;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 0.8s 0.1s backwards;
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ---------- Intro Grid (Text + Image) ---------- */
.city-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin: 80px 0;
}
.intro-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
}
.intro-image {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}
.intro-image:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 40px rgba(212, 175, 55, 0.15);
}
.intro-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}
.intro-image:hover img {
    transform: scale(1.03);
}

/* ---------- Services Available (Icon Cards) ---------- */
.services-available {
    text-align: center;
    margin: 80px 0;
}
.services-available h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}
.services-available h2:after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background: #D4AF37;
    margin: 12px auto 0;
    border-radius: 2px;
}
.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
.service-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 30px 15px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    border: 1px solid #f0f0f0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02);
}
.service-card:hover {
    transform: translateY(-8px);
    border-color: #D4AF37;
    box-shadow: 0 20px 35px rgba(212, 175, 55, 0.12);
}
.service-card i {
    font-size: 48px;
    color: #D4AF37;
    margin-bottom: 20px;
    transition: transform 0.2s;
}
.service-card:hover i {
    transform: scale(1.08);
}
.service-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.service-card p {
    font-size: 0.85rem;
    color: #666;
}

/* ---------- Coverage Areas ---------- */
.coverage-areas {
    background: #fafaf8;
    border-radius: 40px;
    padding: 60px 40px;
    margin: 80px 0;
    text-align: center;
}
.coverage-areas h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
}
.area-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}
.area-group {
    background: #ffffff;
    border-radius: 28px;
    padding: 30px 25px;
    min-width: 220px;
    transition: all 0.3s;
    border: 1px solid #eee;
}
.area-group:hover {
    transform: translateY(-5px);
    border-color: #D4AF37;
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.08);
}
.area-group h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 20px;
    border-left: 3px solid #D4AF37;
    padding-left: 12px;
    text-align: left;
}
.area-group span {
    display: inline-block;
    background: #f5f5f5;
    padding: 6px 14px;
    margin: 6px;
    border-radius: 40px;
    font-size: 0.85rem;
    color: #444;
    transition: all 0.2s;
}
.area-group span:hover {
    background: #D4AF37;
    color: #fff;
    transform: translateY(-2px);
}

/* ---------- Why Choose Us (Benefits) ---------- */
.why-choose-city {
    background: linear-gradient(135deg, #FFF9E6, #ffffff);
    border-radius: 40px;
    padding: 60px 40px;
    margin: 80px 0;
    text-align: center;
}
.why-choose-city h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}
.benefit {
    background: #ffffff;
    padding: 16px 20px;
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    border: 1px solid #eee;
    transition: all 0.2s;
}
.benefit i {
    color: #D4AF37;
    font-size: 1.2rem;
}
.benefit:hover {
    transform: translateX(8px);
    border-color: #D4AF37;
    background: #fff;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.05);
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
    .city-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .service-cards {
        gap: 20px;
    }
    .area-grid {
        flex-direction: column;
        align-items: center;
    }
    .area-group {
        width: 100%;
        max-width: 300px;
    }
}
@media (max-width: 768px) {
    .city-hero {
        padding: 70px 0 50px;
    }
    .city-hero h1 {
        font-size: 2rem;
    }
    .services-available h2 {
        font-size: 1.8rem;
    }
    .service-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    .benefit {
        justify-content: center;
    }
}
@media (max-width: 480px) {
    .service-cards {
        grid-template-columns: 1fr;
    }
    .coverage-areas {
        padding: 30px 20px;
    }
}

/* ============================================
   EXTREME CERTIFICATIONS SECTION
   White Background | Subtle Golden Tint
   Curved Container | 3D Tilt | Floating Icons | Pulsing Glow
   ============================================ */

.extreme-cert-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #ffffff 0%, #FFF9E6 100%);
    /* very subtle golden tint */
}

.cert-curved-container {
    max-width: 1300px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(2px);
    border-radius: 60px;
    padding: 60px 40px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.03), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.3s;
}

.cert-header {
    text-align: center;
    margin-bottom: 60px;
}
.cert-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1a1a1a, #D4AF37);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.5px;
}
.cert-gold-line {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #D4AF37, #FFE68F, #D4AF37);
    margin: 20px auto;
    border-radius: 2px;
    animation: pulseWidth 2s infinite ease-in-out;
}
@keyframes pulseWidth {
    0% { width: 100px; opacity: 0.6; }
    50% { width: 140px; opacity: 1; }
    100% { width: 100px; opacity: 0.6; }
}
.cert-subtitle {
    font-size: 1.1rem;
    color: #555;
    max-width: 650px;
    margin: 0 auto;
}

/* Grid */
.cert-extreme-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 35px;
}

/* Card – extreme styling (white/gold gradient background) */
.cert-extreme-card {
    position: relative;
    background: linear-gradient(145deg, #ffffff, #FFFDF5);
    border-radius: 32px;
    padding: 40px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.2);
    transform-style: preserve-3d;
    perspective: 1000px;
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    overflow: hidden;
    animation: floatIn 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.2) backwards;
}
.cert-extreme-card:nth-child(1) { animation-delay: 0.1s; }
.cert-extreme-card:nth-child(2) { animation-delay: 0.2s; }
.cert-extreme-card:nth-child(3) { animation-delay: 0.3s; }
.cert-extreme-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes floatIn {
    0% {
        opacity: 0;
        transform: translateY(60px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* 3D tilt on hover */
.cert-extreme-card:hover {
    transform: translateY(-15px) rotateX(3deg) rotateY(3deg);
    box-shadow: 0 35px 55px rgba(212, 175, 55, 0.15);
    border-color: #D4AF37;
}

/* Floating icon animation */
.cert-extreme-icon {
    margin-bottom: 25px;
    animation: floatIcon 3s ease-in-out infinite;
}
@keyframes floatIcon {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}
.cert-extreme-icon i {
    font-size: 60px;
    background: linear-gradient(135deg, #D4AF37, #FFD966);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: all 0.3s;
}
.cert-extreme-card:hover .cert-extreme-icon i {
    transform: scale(1.15);
    filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.4));
}

/* Typography */
.cert-extreme-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #1a1a1a, #333);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.cert-extreme-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* Glowing border effect on hover */
.cert-glow {
    position: absolute;
    inset: 0;
    border-radius: 32px;
    padding: 2px;
    background: linear-gradient(135deg, #D4AF37, #FFE68F, #D4AF37);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}
.cert-extreme-card:hover .cert-glow {
    opacity: 1;
    animation: pulseGlow 1s infinite;
}
@keyframes pulseGlow {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.5; }
}

/* Responsive */
@media (max-width: 768px) {
    .extreme-cert-section {
        padding: 50px 20px;
    }
    .cert-curved-container {
        border-radius: 40px;
        padding: 40px 25px;
    }
    .cert-header h2 {
        font-size: 1.8rem;
    }
    .cert-extreme-card {
        padding: 30px 20px;
    }
    .cert-extreme-icon i {
        font-size: 48px;
    }
    .cert-extreme-card h3 {
        font-size: 1.3rem;
    }
}
/* ============================================
   How It Works Section - Next Level Premium
   Desktop: 3 cards in a row | Mobile: 1 card
   Gold/White/Black Theme | Animations
   ============================================ */

.how-it-works {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #FFF9E6 100%);
    position: relative;
    overflow: hidden;
}

/* Subtle background pattern */
.how-it-works::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 120%;
    height: 150%;
    background: radial-gradient(circle at 30% 40%, rgba(212, 175, 55, 0.04), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 70px;
}
.section-header h2 {
    font-size: 2.3rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
}
.title-border {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #D4AF37, #FFE68F);
    margin: 0 auto;
    border-radius: 2px;
    animation: pulseBorder 2s infinite ease-in-out;
}
@keyframes pulseBorder {
    0% { width: 80px; opacity: 0.6; }
    50% { width: 120px; opacity: 1; }
    100% { width: 80px; opacity: 0.6; }
}

/* Steps Grid - Desktop: 3 columns, Mobile: 1 column */
.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

/* Optional connector line (desktop only) */
@media (min-width: 992px) {
    .steps-container::before {
        content: '';
        position: absolute;
        top: 30%;
        left: 15%;
        width: 70%;
        height: 2px;
        background: linear-gradient(90deg, #D4AF37, rgba(212, 175, 55, 0.2), #D4AF37);
        transform: translateY(-50%);
        z-index: 0;
        opacity: 0.4;
    }
}

/* ============================================
   GLOBAL ATTRACTIVE ANIMATIONS
   ============================================ */

/* Scroll Reveal Animation - Fade in from bottom */
@keyframes scrollRevealUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Floating animation - gentle up and down */
@keyframes floatingAnimation {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Shine effect */
@keyframes shineEffect {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Pulse glow */
@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
    }
    50% {
        box-shadow: 0 0 40px rgba(212, 175, 55, 0.4);
    }
}

/* Scale bounce on hover */
@keyframes scaleBounce {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1);
    }
}

/* Section entrance - staggered */
@keyframes staggerEnter {
    from {
        opacity: 0;
        transform: translateY(40px) rotateX(-10deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

/* Apply animations to main sections */
.services-scroll {
    animation: scrollRevealUp 0.8s ease-out;
}

.hero-section {
    animation: scrollRevealUp 0.6s ease-out;
}

.steps-section {
    animation: scrollRevealUp 0.8s ease-out 0.1s both;
}

.trust-section {
    animation: scrollRevealUp 0.8s ease-out 0.15s both;
}

.footer {
    animation: scrollRevealUp 0.8s ease-out 0.2s both;
}

/* Animated cards with stagger */
.service-card,
.trust-card,
.step-card,
.blog-card {
    animation: staggerEnter 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
}

.service-card:nth-child(1),
.trust-card:nth-child(1),
.step-card:nth-child(1),
.blog-card:nth-child(1) { animation-delay: 0.05s; }

.service-card:nth-child(2),
.trust-card:nth-child(2),
.step-card:nth-child(2),
.blog-card:nth-child(2) { animation-delay: 0.1s; }

.service-card:nth-child(3),
.trust-card:nth-child(3),
.step-card:nth-child(3),
.blog-card:nth-child(3) { animation-delay: 0.15s; }

.service-card:nth-child(4),
.trust-card:nth-child(4),
.step-card:nth-child(4),
.blog-card:nth-child(4) { animation-delay: 0.2s; }

/* Floating effect on hover */
.service-card:hover,
.trust-card:hover,
.step-card:hover,
.blog-card:hover {
    animation: floatingAnimation 2s ease-in-out infinite;
}

/* Glow pulse effect */
.service-card,
.trust-card,
.step-card {
    animation: pulseGlow 3s ease-in-out infinite;
}

/* Section headers - slide and fade */
.section-header {
    animation: scrollRevealUp 0.7s ease-out;
}

.section-header h2 {
    animation: slideInDown 0.7s ease-out;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CTA buttons - scale on hover with smooth transition */
.btn-primary,
.btn-outline,
.cta-button {
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-primary:hover,
.btn-outline:hover,
.cta-button:hover {
    animation: scaleBounce 0.4s ease-out;
}

/* Icons - rotate and scale */
.trust-icon i,
.service-icon i,
.step-icon i {
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Step Card */
.step-card {
    position: relative;
    background: #ffffff;
    border-radius: 40px;
    padding: 45px 25px 35px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.2);
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.03);
    backdrop-filter: blur(2px);
    z-index: 1;
    animation: cardFloatIn 0.6s backwards;
}
.step-card:nth-child(1) { animation-delay: 0.1s; }
.step-card:nth-child(2) { animation-delay: 0.2s; }
.step-card:nth-child(3) { animation-delay: 0.3s; }

@keyframes cardFloatIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-card:hover {
    transform: translateY(-15px);
    border-color: #D4AF37;
    box-shadow: 0 35px 55px rgba(212, 175, 55, 0.15);
    background: #ffffff;
}

/* Step Number Badge */
.step-number {
    position: absolute;
    top: -18px;
    left: 25px;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #D4AF37, #FFD966);
    color: #1a1a1a;
    font-size: 1.6rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
    transition: all 0.3s;
}
.step-card:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
}

/* Step Icon */
.step-icon {
    margin: 15px 0 20px;
}
.step-icon i {
    font-size: 64px;
    background: linear-gradient(135deg, #D4AF37, #FFD966);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: all 0.3s;
    display: inline-block;
}
.step-card:hover .step-icon i {
    transform: scale(1.12) rotate(3deg);
    filter: drop-shadow(0 8px 20px rgba(212, 175, 55, 0.3));
}

/* Typography */
.step-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
    transition: color 0.2s;
}
.step-card:hover h3 {
    color: #D4AF37;
}
.step-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive: Mobile (≤768px) - 1 card per row */
@media (max-width: 768px) {
    .how-it-works {
        padding: 60px 0;
    }
    .section-header h2 {
        font-size: 1.8rem;
    }
    .steps-container {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 400px;
    }
    .step-card {
        padding: 35px 20px;
    }
    .step-number {
        width: 44px;
        height: 44px;
        font-size: 1.3rem;
        top: -15px;
        left: 20px;
    }
    .step-icon i {
        font-size: 52px;
    }
    .step-card h3 {
        font-size: 1.3rem;
    }
}

/* Tablet (769px - 991px) - still 3 cards but smaller gap */
@media (min-width: 769px) and (max-width: 991px) {
    .steps-container {
        gap: 25px;
    }
    .step-card {
        padding: 35px 20px;
    }
    .step-icon i {
        font-size: 52px;
    }
    .step-card h3 {
        font-size: 1.3rem;
    }
}



/* ============================================
   Trust Section - Next Level Premium
   Desktop: 4 cards in a row | Mobile: 1 card
   Gold/White/Black Theme | Animations
   ============================================ */

.trust-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #FFF9E6 100%);
    position: relative;
    overflow: hidden;
}

/* Subtle background decoration */
.trust-section::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -20%;
    width: 140%;
    height: 150%;
    background: radial-gradient(circle at 30% 40%, rgba(212, 175, 55, 0.03), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.12);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #D4AF37;
    margin-bottom: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}
.section-badge i {
    font-size: 0.9rem;
}
.section-header h2 {
    font-size: 2.3rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}
.section-subtitle {
    font-size: 1rem;
    color: #666;
    max-width: 650px;
    margin: 0 auto;
}

/* Trust Grid - Desktop: 4 columns, Mobile: 1 column */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 40px 0 50px;
}

/* Trust Card - compact, rounded, animated */
.trust-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 28px 20px 32px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.2);
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    height: 100%;
    animation: cardFadeIn 0.6s backwards;
}
.trust-card:nth-child(1) { animation-delay: 0.05s; }
.trust-card:nth-child(2) { animation-delay: 0.1s; }
.trust-card:nth-child(3) { animation-delay: 0.15s; }
.trust-card:nth-child(4) { animation-delay: 0.2s; }

@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.trust-card:hover {
    transform: translateY(-8px);
    border-color: #D4AF37;
    box-shadow: 0 25px 40px rgba(212, 175, 55, 0.12);
    background: #ffffff;
}

/* Icon */
.trust-icon {
    margin-bottom: 20px;
}
.trust-icon i {
    font-size: 52px;
    background: linear-gradient(135deg, #D4AF37, #FFD966);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: all 0.3s;
    display: inline-block;
}
.trust-card:hover .trust-icon i {
    transform: scale(1.08);
    filter: drop-shadow(0 5px 12px rgba(212, 175, 55, 0.3));
}

/* Typography */
.trust-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
    transition: color 0.2s;
}
.trust-card:hover h3 {
    color: #D4AF37;
}
.trust-card p {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Trust List (checkmarks) */
.trust-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}
.trust-list li {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.trust-list li i {
    color: #D4AF37;
    font-size: 0.75rem;
    width: 18px;
}

/* Bottom CTA */
.trust-cta {
    text-align: center;
    margin-top: 50px;
    padding: 35px 20px;
    background: #ffffff;
    border-radius: 60px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.02);
}
.trust-cta p {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1a1a1a;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: transparent;
    border: 2px solid #D4AF37;
    color: #D4AF37;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}
.btn-outline:hover {
    background: #D4AF37;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

/* Responsive: Mobile (≤768px) - 1 card per row, small size */
@media (max-width: 768px) {
    .trust-section {
        padding: 50px 0;
    }
    .section-header h2 {
        font-size: 1.8rem;
    }
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin: 30px 0;
    }
    .trust-card {
        padding: 22px 18px 25px;
        max-width: 380px;
        margin: 0 auto;
        width: 100%;
    }
    .trust-icon i {
        font-size: 44px;
    }
    .trust-card h3 {
        font-size: 1.2rem;
    }
    .trust-card p {
        font-size: 0.8rem;
    }
    .trust-list li {
        font-size: 0.75rem;
    }
    .trust-cta {
        padding: 25px 15px;
    }
    .trust-cta p {
        font-size: 1.1rem;
    }
    .btn-outline {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Tablet (769px - 1023px) - 2 cards per row */
@media (min-width: 769px) and (max-width: 1023px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    .trust-card {
        padding: 25px 20px;
    }
}
