/**
 * Manarat Elforas - Home Page Stylesheet
 */

/* ============================================
   Hero Section
   ============================================ */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

/* Mobile & Tablet: Reduce padding */
@media (max-width: 1024px) {
    .hero {
        min-height: auto;
        padding: 2rem 0 3rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 1.5rem 0 2.5rem;
    }
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(0, 107, 100, 0.5) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(174, 147, 87, 0.2) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 50%, rgba(174, 147, 87, 0.05) 0%, transparent 70%),
        linear-gradient(135deg, #004C48 0%, #003D3A 100%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23AE9357' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
}

/* Mobile & Tablet: Center content */
@media (max-width: 1024px) {
    .hero-content {
        text-align: center;
        margin: 0 auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-text,
    .hero-note {
        margin-left: auto;
        margin-right: auto;
    }
}

/* Hero Container with Grid Layout - DESKTOP ONLY */
@media (min-width: 1025px) {
    .hero .container {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        gap: 3rem;
        align-items: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
}

.hero-badge {
    display: inline-block;
    background: rgba(174, 147, 87, 0.2);
    border: 2px solid var(--gold);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    color: var(--gold-light);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 20px rgba(174, 147, 87, 0.2);
}

@media (max-width: 768px) {
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1.2rem;
        margin-bottom: 1rem;
    }
}

.hero h1 {
    font-weight: 900;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .hero h1 {
        margin-bottom: 1rem;
        line-height: 1.2;
    }
}

.hero h1 .highlight {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

@media (max-width: 768px) {
    .hero-text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .hero-buttons {
        gap: 0.75rem;
        margin-bottom: 1.25rem;
    }
}

.hero-note {
    font-size: 0.85rem;
    color: var(--light-cream);
    opacity: 0.7;
    max-width: 500px;
}

@media (max-width: 768px) {
    .hero-note {
        font-size: 0.75rem;
        line-height: 1.5;
    }
}

/* Floating Shapes */
.floating-shape {
    position: absolute;
    opacity: 0.08;
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
}

.floating-shape.shape-1 {
    top: 15%;
    left: 10%;
    width: 300px;
    height: 300px;
    border: 2px solid var(--gold);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.floating-shape.shape-2 {
    bottom: 20%;
    right: 5%;
    width: 200px;
    height: 200px;
    background: var(--gold);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation-delay: -5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(10deg); }
}

/* ============================================
   Hero Illustration - Real Estate Visual (DESKTOP ONLY)
   ============================================ */
.hero-illustration {
    display: none;
}

@media (min-width: 1025px) {
    .hero-illustration {
        display: flex;
        position: relative;
        z-index: 2;
        width: 100%;
        height: 500px;
        align-items: center;
        justify-content: center;
    }
}

.buildings-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 1.5rem;
}

.building {
    position: relative;
    background: linear-gradient(135deg, rgba(0, 107, 100, 0.4) 0%, rgba(0, 76, 72, 0.3) 100%);
    border: 2px solid var(--gold);
    border-radius: 8px 8px 0 0;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.3),
        inset 0 -2px 10px rgba(174, 147, 87, 0.2);
    backdrop-filter: blur(10px);
    animation: buildingRise 1s ease-out backwards;
}

.building-1 {
    width: 120px;
    height: 300px;
    animation-delay: 0.2s;
}

.building-2 {
    width: 100px;
    height: 380px;
    animation-delay: 0.4s;
}

.building-3 {
    width: 140px;
    height: 320px;
    animation-delay: 0.6s;
}

.building-windows {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 20px 12px;
    height: calc(100% - 40px);
}

.window {
    background: linear-gradient(135deg, rgba(174, 147, 87, 0.3) 0%, rgba(174, 147, 87, 0.1) 100%);
    border: 1px solid var(--gold);
    border-radius: 4px;
    animation: windowGlow 3s ease-in-out infinite;
}

.window:nth-child(2n) { animation-delay: 0.5s; }
.window:nth-child(3n) { animation-delay: 1s; }
.window:nth-child(5n) { animation-delay: 1.5s; }

.building-roof {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 70px solid transparent;
    border-right: 70px solid transparent;
    border-bottom: 30px solid var(--gold);
    filter: drop-shadow(0 0 10px rgba(174, 147, 87, 0.5));
}

.building-door {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 50px;
    background: linear-gradient(180deg, var(--gold) 0%, var(--gold-dark) 100%);
    border: 2px solid var(--gold-light);
    border-bottom: none;
    border-radius: 8px 8px 0 0;
}

.property-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--gold-gradient);
    border: 3px solid var(--gold-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: var(--shadow-gold-lg);
    animation: floatIcon 3s ease-in-out infinite;
}

.property-icon-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.property-icon-2 {
    top: 30%;
    right: 8%;
    animation-delay: 1s;
}

.property-icon-3 {
    bottom: 15%;
    left: 10%;
    animation-delay: 2s;
}

.hero-decorative-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
    width: 200px;
    opacity: 0.3;
}

.deco-line-1 {
    top: 20%;
    right: 0;
    animation: slideRight 4s ease-in-out infinite;
}

.deco-line-2 {
    bottom: 30%;
    left: 0;
    animation: slideLeft 4s ease-in-out infinite;
}

@keyframes buildingRise {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes windowGlow {
    0%, 100% {
        background: linear-gradient(135deg, rgba(174, 147, 87, 0.3) 0%, rgba(174, 147, 87, 0.1) 100%);
        box-shadow: 0 0 5px rgba(174, 147, 87, 0.3);
    }
    50% {
        background: linear-gradient(135deg, rgba(174, 147, 87, 0.6) 0%, rgba(174, 147, 87, 0.3) 100%);
        box-shadow: 0 0 15px rgba(174, 147, 87, 0.6);
    }
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

@keyframes slideRight {
    0%, 100% {
        transform: translateX(0);
        opacity: 0;
    }
    50% {
        opacity: 0.3;
    }
}

@keyframes slideLeft {
    0%, 100% {
        transform: translateX(0);
        opacity: 0;
    }
    50% {
        opacity: 0.3;
    }
}

/* ============================================
   Trust Bar - REDESIGNED
   ============================================ */
.trust-bar {
    background: linear-gradient(135deg, #006B64 0%, rgba(174, 147, 87, 0.15) 50%, #004C48 100%);
    padding: 4rem 0;
    border-top: 2px solid #ae935761;
    border-bottom: 2px solid #ae935766;
    position: relative;
    overflow: hidden;
}

.trust-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(174, 147, 87, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(174, 147, 87, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.trust-item {
    padding: 2rem 1.5rem;
    background: linear-gradient(145deg, rgba(0, 107, 100, 0.3) 0%, rgba(0, 76, 72, 0.2) 100%);
    border: 2px solid rgba(174, 147, 87, 0.3);
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.trust-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.trust-item:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold-lg);
}

.trust-item:hover::before {
    transform: scaleX(1);
}

.trust-number {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    text-shadow: 0 0 30px rgba(174, 147, 87, 0.5);
    line-height: 1;
    display: block;
}

.trust-label {
    color: var(--off-white);
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
}

/* Icon badges for each stat */
.trust-item::after {
    content: '';
    position: absolute;
    top: -10px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.2;
}

/* Mobile optimization */
@media (max-width: 768px) {
    .trust-bar {
        padding: 3rem 0;
    }
    
    .trust-grid {
        gap: 1.5rem;
    }
    
    .trust-item {
        padding: 1.5rem 1rem;
    }
    
    .trust-number {
        font-size: 2.5rem;
    }
    
    .trust-label {
        font-size: 0.9rem;
    }
}

/* ============================================
   Services Grid
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: linear-gradient(145deg, rgba(0, 107, 100, 0.3) 0%, rgba(0, 76, 72, 0.2) 100%);
    border: 2px solid #ae93576b;
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
    backdrop-filter: blur(10px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0px;
    background: var(--gold-gradient);
    transform: scaleX(1);
    transition: var(--transition-normal);
    z-index: 0;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-light);
    box-shadow: var(--shadow-gold-lg);
    background: linear-gradient(145deg, rgba(0, 107, 100, 0.4) 0%, rgba(0, 76, 72, 0.3) 100%);
}

.service-card:hover::before {
    height: 1px;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gold);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    box-shadow: var(--shadow-gold);
}

.service-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--dark-teal);
}

.service-card h3 {
    font-size: 1.2rem;
    color: var(--off-white);
    margin-bottom: 0.75rem;
}

.service-card p {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    color: var(--light-cream);
}

.service-card .btn {
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
}

/* ============================================
   Why Us Grid - لماذا نحن
   ============================================ */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.why-us-item {
    background: rgb(0 42 40 / 35%);
    border: 2px solid rgba(174, 147, 87, 0.3);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1.4rem;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.why-us-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.why-us-item:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(174, 147, 87, 0.3);
}

.why-us-item:hover::before {
    transform: scaleX(1);
}

.why-us-icon {
    width: 80px;
    height: 80px;
    background: #ae9357c7;
    border: 2px solid #c19d4c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    box-shadow: 
        0 8px 25px rgba(174, 147, 87, 0.4),
        inset 0 0 15px rgba(174, 147, 87, 0.3);
    color: var(--dark-teal);
    transition: all 0.4s ease;
}

.why-us-item:hover .why-us-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 
        0 12px 35px rgba(174, 147, 87, 0.6),
        inset 0 0 20px rgba(174, 147, 87, 0.5);
}

.why-us-item h3 {
    color: var(--gold);
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.why-us-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--light-cream);
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .why-us-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .why-us-item {
        padding: 2rem 1.5rem;
    }
    
    .why-us-icon {
        width: 90px;
        height: 90px;
        font-size: 2.2rem;
    }
    
    .why-us-item h3 {
        font-size: 1.3rem;
    }
    
    .why-us-item p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .why-us-grid {
        grid-template-columns: 1fr;
    }
    
    .why-us-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
}

/* ============================================
   Steps / Process
   ============================================ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    counter-reset: step;
}

.step-item {
    position: relative;
    padding: 2rem;
    background: linear-gradient(145deg, rgba(0, 107, 100, 0.3) 0%, rgba(0, 76, 72, 0.2) 100%);
    border: 2px solid var(--gold);
    border-radius: var(--radius-lg);
    counter-increment: step;
    transition: var(--transition-normal);
    backdrop-filter: blur(10px);
}

.step-item:hover {
    border-color: var(--gold-light);
    box-shadow: var(--shadow-gold);
    transform: translateY(-3px);
}

.step-item::before {
    content: counter(step);
    position: absolute;
    top: -15px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: var(--gold-gradient);
    color: var(--dark-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: var(--shadow-gold);
    border: 2px solid var(--gold-light);
}

.step-item h3 {
    color: var(--off-white);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    margin-top: 0.5rem;
}

.step-item p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: var(--light-cream);
}

/* ============================================
   Cities Section
   ============================================ */
.cities-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.city-card {
    background: linear-gradient(135deg, rgba(0, 107, 100, 0.4) 0%, rgba(174, 147, 87, 0.1) 100%);
    border: 3px solid var(--gold);
    padding: 2rem 3rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition-normal);
    min-width: 200px;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-gold);
}

.city-card:hover {
    background: var(--gold);
    transform: scale(1.08);
    box-shadow: var(--shadow-gold-lg);
}

.city-card:hover h3,
.city-card:hover p {
    color: var(--dark-teal);
}

.city-card h3 {
    color: var(--gold-light);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    transition: var(--transition-normal);
    text-shadow: 0 0 10px rgba(174, 147, 87, 0.3);
}

.city-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
    transition: var(--transition-normal);
    color: var(--off-white);
}

/* ============================================
   Team Section - FINAL FIX CSS
   ============================================ */

/* Main Section Container (No changes) */
.team-section {
    background: linear-gradient(135deg, #004C48 0%, #003D3A 50%, rgba(174, 147, 87, 0.1) 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

/* 

*/
.team-carousel-wrapper {
    position: relative;
    margin-top: 3rem;
    overflow: hidden;
    padding: 2rem 0;
    transition: opacity 0.3s ease; /* Smooth fade-in */
}


/* The moving carousel track */
.team-carousel {
    display: flex;    /* Aligns cards in a row */
    gap: 2rem;        /* Space between cards */
    
    /* --- THE FIX --- */
    /* We position the carousel track at the top-left of the wrapper. 
       This prevents other elements from pushing it out of view. */
    position: absolute;
    top: 0;
    left: 0;
    padding-top: 30px; /* Adds space from the top for the hover effect */
}

/* Individual Team Member Card (No changes to your styling) */
.team-member {
    flex-shrink: 0; 
    background: linear-gradient(145deg, rgba(0, 107, 100, 0.4) 0%, rgba(0, 76, 72, 0.3) 100%);
    border: 2px solid var(--gold);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    direction: rtl;
}

/* All other styles (hover, photo, name, nav, responsive) can remain exactly as you had them. */
/* (The rest of your styling for the cards and buttons is perfectly fine) */

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s ease;
}

.team-member:hover {
    transform: translateY(-15px);
    border-color: var(--gold-light);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(174, 147, 87, 0.4);
}

.team-member:hover::before {
    transform: scaleX(1);
}

.team-photo {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 4px solid var(--gold);
    margin: 0 auto 1.5rem;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 0 20px rgba(174, 147, 87, 0.2);
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 107, 100, 0.5) 0%, rgba(0, 76, 72, 0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: var(--gold);
    transition: all 0.4s ease;
    position: relative;
}

.team-member:hover .team-photo {
    transform: scale(1.1);
    border-color: var(--gold-light);
    box-shadow: 
        0 15px 40px rgba(174, 147, 87, 0.5),
        inset 0 0 30px rgba(174, 147, 87, 0.4);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    color: var(--off-white);
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.team-position {
    color: var(--gold-light);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 27rem;
}

.carousel-btn {
    width: 55px;
    height: 55px;
    background: var(--gold-gradient);
    border: 3px solid var(--gold-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-gold);
    border: none;
}

.carousel-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-gold-lg);
}

.carousel-btn svg {
    width: 28px;
    height: 28px;
    stroke: var(--dark-teal);
    stroke-width: 3;
}

@media (max-width: 1024px) {
    .team-member { width: 260px; }
    .team-photo { width: 120px; height: 120px; font-size: 3rem; }
}

@media (max-width: 768px) {
    .team-carousel { gap: 1.5rem; }
    .team-member { width: 240px; padding: 2rem 1.5rem; }
    .team-photo { width: 110px; height: 110px; font-size: 2.5rem; }
    .team-name { font-size: 1.2rem; }
    .team-position { font-size: 0.9rem; }
}

@media (max-width: 480px) {
    .team-member { width: 220px; padding: 1.8rem 1.2rem; }
    .team-photo { width: 100px; height: 100px; font-size: 2rem; }
    .team-name { font-size: 1.1rem; }
    .team-position { font-size: 0.85rem; }
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    background: var(--teal-gold-gradient);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 3px solid #ae935747;
    border-bottom: 2px solid #ae935729;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* ============================================
   Responsive - Home Page
   ============================================ */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 3rem 0;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .city-card {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .services-grid,
    .why-us-grid,
    .steps-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}