/* CSS Variables - Brand Colors from Logo */
:root {
    --primary-blue: #5B8CB8;
    --primary-maroon: #6B1F3A;
    --dark-blue: #3D5A73;
    --light-blue: #7BA5CC;
    --gold: #D4AF37;
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --light-gray: #E9ECEF;
    --medium-gray: #6C757D;
    --dark-gray: #343A40;
    --black: #1A1A1A;
    
    --gradient-primary: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-maroon) 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(91, 140, 184, 0.95) 0%, rgba(107, 31, 58, 0.95) 100%);
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-heading: 'Georgia', serif;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--dark-gray);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Section Spacing */
section {
    padding: 100px 0;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    color: var(--primary-maroon);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--black);
    margin-bottom: 16px;
    font-weight: 600;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

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

.btn-small {
    padding: 10px 24px;
    font-size: 0.875rem;
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    transition: all var(--transition-normal);
    padding: 20px 0;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
}

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

.logo-img {
    height: 60px;
    transition: var(--transition-normal);
}

.navbar.scrolled .logo-img {
    height: 50px;
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    color: var(--white);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding: 8px 0;
}

.navbar.scrolled .nav-link {
    color: var(--dark-gray);
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--white);
    transition: var(--transition-normal);
    border-radius: 2px;
}

.navbar.scrolled .hamburger span {
    background: var(--dark-gray);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: 
                url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1600') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--white);
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(
  rgba(15, 23, 42, 0.65),
  rgba(15, 23, 42, 0.65)
);

    
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-top: 100px;
}

.hero-text {
    margin-bottom: 60px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.375rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-normal);
}

.stat-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--white) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-number::after {
    content: '+';
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 25px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 8px;
}

.scroll-indicator span {
    width: 6px;
    height: 10px;
    background: var(--white);
    border-radius: 3px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 20% {
        transform: translateY(0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(20px);
        opacity: 0;
    }
}

/* About Section */
.about {
    background: var(--white);
    position: relative;
    z-index: 3;
    background: #fff;
}

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

.about-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    opacity: 0;
    transition: var(--transition-slow);
    z-index: 1;
}

.about-image-wrapper:hover::before {
    opacity: 0.3;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-heading {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-maroon);
    margin-bottom: 20px;
}

.about-description {
    color: var(--medium-gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features {
    margin-top: 32px;
}

.feature-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.feature-text h4 {
    color: var(--black);
    margin-bottom: 4px;
    font-size: 1.125rem;
}

.feature-text p {
    color: var(--medium-gray);
    font-size: 0.9375rem;
}

/* Projects Section */
.projects {
    background: var(--off-white);
}

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

.project-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

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

.project-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

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

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gold);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-md);
}

.project-content {
    padding: 28px;
}

.project-title {
    font-size: 1.5rem;
    color: var(--black);
    margin-bottom: 12px;
    font-weight: 600;
}

.project-location {
    color: var(--primary-blue);
    margin-bottom: 16px;
    font-size: 0.9375rem;
    font-weight: 500;
}

.project-description {
    color: var(--medium-gray);
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 0.9375rem;
}

.project-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.project-amenities li {
    background: var(--light-gray);
    color: var(--dark-gray);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8125rem;
    font-weight: 500;
}

.project-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--light-gray);
}

.project-size {
    color: var(--primary-maroon);
    font-weight: 600;
    font-size: 1rem;
}

/* Why Choose Us Section */
.why-choose {
    background: linear-gradient(135deg, rgba(91, 140, 184, 0.05) 0%, rgba(107, 31, 58, 0.05) 100%);
}

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

.feature-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

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

.feature-card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card-title {
    font-size: 1.25rem;
    color: var(--black);
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-card-description {
    color: var(--medium-gray);
    line-height: 1.7;
    font-size: 0.9375rem;
}


/* ============================================
   LOANS & INSURANCE SECTION
   ============================================ */

.loans-insurance {
    padding: 100px 0;
    background: linear-gradient(160deg, #f8f9fc 0%, #eef2f8 50%, #f5edf0 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative background blobs */
.loans-insurance::before {
    content: '';
    position: absolute;
    top: -120px;
    left: -120px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(91, 140, 184, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.loans-insurance::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(107, 31, 58, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

/* Section header reuse */
.li-section-header {
    text-align: center;
    margin-bottom: 64px;
}

/* Two-column wrapper */
.li-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    position: relative;
    z-index: 1;
}

/* Divider line between columns */
.li-wrapper::after {
    content: '';
    position: absolute;
    top: 40px;
    bottom: 40px;
    left: 50%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(91, 140, 184, 0.25), rgba(107, 31, 58, 0.2), transparent);
    pointer-events: none;
}

/* ---- Group (Loans / Insurance) ---- */
.li-group {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 0 20px;
}

.li-group-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(91, 140, 184, 0.15);
}

.li-group-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, #5B8CB8 0%, #6B1F3A 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(91, 140, 184, 0.3);
}

.li-group-title {
    font-family: var(--font-heading, Georgia, serif);
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, #5B8CB8 0%, #6B1F3A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---- Cards Stack ---- */
.li-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ---- Individual Card ---- */
.li-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px 28px 22px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    border: 1.5px solid transparent;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Subtle left-border accent */
.li-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #5B8CB8, #6B1F3A);
    border-radius: 4px 0 0 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.li-card:hover {
    transform: translateY(-6px);
    border-color: rgba(91, 140, 184, 0.2);
    box-shadow: 0 12px 40px rgba(91, 140, 184, 0.15);
}

.li-card:hover::before {
    opacity: 1;
}

/* Card icon */
.li-card-icon {
    font-size: 2.25rem;
    line-height: 1;
}

/* Card body */
.li-card-body {
    flex: 1;
}

.li-card-title {
    font-family: var(--font-heading, Georgia, serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.li-card-desc {
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.75;
}

/* Insurance tags */
.li-insurance-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}

.li-insurance-tags li {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #5B8CB8;
    background: rgba(91, 140, 184, 0.1);
    border: 1px solid rgba(91, 140, 184, 0.25);
    border-radius: 20px;
    padding: 5px 14px;
    transition: all 0.25s ease;
}

.li-insurance-tags li:hover {
    background: linear-gradient(135deg, #5B8CB8, #6B1F3A);
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
}

/* Insurance card full-height variant */
.li-card--insurance {
    flex: 1;
}

/* CTA link at card bottom */
.li-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #6B1F3A;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-top: 4px;
    transition: all 0.25s ease;
    width: fit-content;
}

.li-card-cta span {
    display: inline-block;
    transition: transform 0.25s ease;
}

.li-card-cta:hover {
    color: #5B8CB8;
    gap: 10px;
}

.li-card-cta:hover span {
    transform: translateX(4px);
}

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

@media (max-width: 1024px) {
    .li-wrapper {
        gap: 28px;
    }
    .li-group {
        padding: 0 10px;
    }
}

@media (max-width: 768px) {
    .loans-insurance {
        padding: 60px 0;
    }

    .li-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    /* Remove vertical divider on mobile */
    .li-wrapper::after {
        display: none;
    }

    .li-group {
        padding: 0;
    }

    /* Horizontal rule between groups on mobile */
    .li-group:first-child {
        padding-bottom: 48px;
        border-bottom: 1px solid rgba(91, 140, 184, 0.2);
    }
}

@media (max-width: 480px) {
    .li-card {
        padding: 22px 20px 18px;
    }

    .li-group-title {
        font-size: 1.5rem;
    }

    .li-card-title {
        font-size: 1.1rem;
    }
}

/* ============================================
   FEEDBACK / TESTIMONIALS SECTION
   ============================================ */

.feedback {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fc 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative background elements */
.feedback::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(91, 140, 184, 0.06) 0%, transparent 70%);
    pointer-events: none;
    animation: float 20s infinite ease-in-out;
}

.feedback::after {
    content: '';
    position: absolute;
    bottom: -180px;
    left: -180px;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(107, 31, 58, 0.05) 0%, transparent 70%);
    pointer-events: none;
    animation: float 25s infinite ease-in-out reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(5deg); }
    66% { transform: translate(-20px, 20px) rotate(-5deg); }
}

/* Feedback Grid */
.feedback-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

/* ---- Feedback Card ---- */
.feedback-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 36px 32px 32px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 2px solid transparent;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

/* Gradient border effect on hover */
.feedback-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #5B8CB8, #6B1F3A);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feedback-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 48px rgba(91, 140, 184, 0.15);
}

.feedback-card:hover::before {
    opacity: 1;
}

/* Quote Icon */
.feedback-card-quote {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(91, 140, 184, 0.1) 0%, rgba(107, 31, 58, 0.1) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5B8CB8;
    transition: all 0.3s ease;
}

.feedback-card:hover .feedback-card-quote {
    background: linear-gradient(135deg, #5B8CB8 0%, #6B1F3A 100%);
    color: #ffffff;
    transform: scale(1.05);
}

/* Card Body */
.feedback-card-body {
    flex: 1;
}

.feedback-card-text {
    font-size: 1rem;
    line-height: 1.75;
    color: #4B5563;
    font-style: italic;
    position: relative;
}

/* Card Footer */
.feedback-card-footer {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid rgba(91, 140, 184, 0.15);
}

/* Header (Avatar + Name) */
.feedback-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
}

.feedback-card-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid transparent;
    background: linear-gradient(#ffffff, #ffffff) padding-box,
                linear-gradient(135deg, #5B8CB8, #6B1F3A) border-box;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.feedback-card:hover .feedback-card-avatar {
    transform: scale(1.08);
}

.feedback-card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feedback-card-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.feedback-card-name {
    font-family: var(--font-heading, 'Georgia', serif);
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.2;
}

.feedback-card-role {
    font-size: 0.875rem;
    color: #6B7280;
    font-weight: 500;
}

/* Rating Stars */
.feedback-card-rating {
    display: flex;
    gap: 4px;
    align-items: center;
}

.feedback-card-rating .star {
    font-size: 1.125rem;
    color: #D4AF37;
    transition: transform 0.2s ease;
}

.feedback-card:hover .feedback-card-rating .star {
    animation: starPulse 0.6s ease forwards;
}

.feedback-card:hover .feedback-card-rating .star:nth-child(1) { animation-delay: 0s; }
.feedback-card:hover .feedback-card-rating .star:nth-child(2) { animation-delay: 0.1s; }
.feedback-card:hover .feedback-card-rating .star:nth-child(3) { animation-delay: 0.2s; }
.feedback-card:hover .feedback-card-rating .star:nth-child(4) { animation-delay: 0.3s; }
.feedback-card:hover .feedback-card-rating .star:nth-child(5) { animation-delay: 0.4s; }

@keyframes starPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

/* ---- Trust Badge Section ---- */
.feedback-trust {
    background: linear-gradient(135deg, #5B8CB8 0%, #6B1F3A 100%);
    border-radius: 20px;
    padding: 40px 32px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 8px 32px rgba(91, 140, 184, 0.25);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* Animated background gradient */
.feedback-trust::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
    animation: shine 3s infinite linear;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.feedback-trust-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.feedback-trust-number {
    font-family: var(--font-heading, 'Georgia', serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.feedback-trust-label {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feedback-trust-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.3), transparent);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .feedback-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 28px;
    }
}

@media (max-width: 768px) {
    .feedback {
        padding: 60px 0;
    }

    .feedback-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 48px;
    }

    .feedback-card {
        padding: 28px 24px 24px;
    }

    .feedback-trust {
        flex-direction: column;
        gap: 32px;
        padding: 36px 24px;
    }

    .feedback-trust-divider {
        width: 120px;
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    }

    .feedback-trust-number {
        font-size: 2.25rem;
    }
}

@media (max-width: 480px) {
    .feedback-card {
        padding: 24px 20px 20px;
        border-radius: 16px;
    }

    .feedback-card-quote {
        width: 48px;
        height: 48px;
    }

    .feedback-card-quote svg {
        width: 32px;
        height: 32px;
    }

    .feedback-card-text {
        font-size: 0.9375rem;
    }

    .feedback-card-name {
        font-size: 1rem;
    }

    .feedback-card-avatar {
        width: 48px;
        height: 48px;
    }

    .feedback-trust-number {
        font-size: 2rem;
    }

    .feedback-trust-label {
        font-size: 0.8125rem;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

.feedback-card:focus-within {
    outline: 3px solid rgba(91, 140, 184, 0.4);
    outline-offset: 4px;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .feedback-card,
    .feedback-card-avatar,
    .feedback-card-quote,
    .feedback-card-rating .star {
        transition: none;
        animation: none;
    }
    
    .feedback::before,
    .feedback::after,
    .feedback-trust::before {
        animation: none;
    }
}



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

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info-title {
    font-size: 1.75rem;
    color: var(--black);
    margin-bottom: 16px;
    font-weight: 600;
}

.contact-info-description {
    color: var(--medium-gray);
    margin-bottom: 32px;
    line-height: 1.7;
}

.contact-details {
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
}

.contact-item-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-item-text h4 {
    color: var(--black);
    margin-bottom: 6px;
    font-size: 1.125rem;
    font-weight: 600;
}

.contact-item-text p {
    color: var(--medium-gray);
    line-height: 1.6;
}

.contact-item-text a {
    color: var(--primary-blue);
    font-weight: 500;
}

.contact-item-text a:hover {
    color: var(--primary-maroon);
}

.office-hours {
    background: var(--off-white);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-blue);
}

.office-hours h4 {
    color: var(--black);
    margin-bottom: 8px;
    font-weight: 600;
}

.office-hours p {
    color: var(--medium-gray);
    line-height: 1.7;
}

/* Contact Form */
.contact-form {
    background: var(--off-white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 24px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: var(--transition-normal);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(91, 140, 184, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}


/* Footer */
.footer {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-maroon) 100%);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 20px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.social-link:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-4px);
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
}

.footer-bottom p {
    margin-bottom: 4px;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom a:hover {
    color: var(--white);
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .section-title {
        font-size: 2.25rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .about-content {
        gap: 40px;
    }
    
    .contact-wrapper {
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    /* Mobile Navigation */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        gap: 32px;
        box-shadow: var(--shadow-lg);
        transition: right var(--transition-normal);
        padding: 40px;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        color: var(--dark-gray);
        font-size: 1.125rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    /* Hero */
    .hero {
        min-height: 80vh;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* About */
    .about-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .about-image img {
        height: 350px;
    }
    
    /* Projects */
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    /* Why Choose */
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    /* Contact */
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form {
        padding: 28px;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .hero-title {
        font-size: 1.875rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9375rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .project-content {
        padding: 20px;
    }
    
    .contact-form {
        padding: 24px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .hamburger,
    .scroll-indicator,
    .btn,
    .contact-form {
        display: none;
    }
}
