/* ============================================
   FAITH MORGAN - MASTER STYLESHEET
   Complete CSS for all pages
   Filename: main.css
   Version: 2.0
   ============================================ */

/* ============================================
   TABLE OF CONTENTS
   1. RESET & BASE
   2. VARIABLES
   3. SCROLLBAR
   4. SELECTION
   5. BUTTONS
   6. HEADER & NAVIGATION
   7. HERO SECTION
   8. SECTION COMMON
   9. ABOUT PAGE
   10. ABOUT CAROUSEL
   11. SERVICES PAGE
   12. PORTFOLIO PAGE
   13. TESTIMONIALS PAGE
   14. PRICING PAGE
   15. CONTACT PAGE
   16. CTA SECTION
   17. FOOTER
   18. RESPONSIVE DESIGN
   19. ANIMATIONS
   ============================================ */

/* ============================================
   1. RESET & BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--navy);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================================
   2. VARIABLES
   ============================================ */
:root {
    --navy: #0a1628;
    --navy-dark: #060d1a;
    --navy-light: #1a2a4a;
    --gold: #c9a84c;
    --gold-light: #e8d5a3;
    --gold-glow: rgba(201, 168, 76, 0.15);
    --white: #ffffff;
    --gray: #8a9bb5;
    --gray-light: #b0c0d8;
    --light-bg: #f8f6f0;
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 8px 40px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.4);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 24px;
    --radius-xl: 30px;
}

/* ============================================
   3. SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--navy);
}
::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
    transition: var(--transition);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-light);
}

/* ============================================
   4. SELECTION
   ============================================ */
::selection {
    background: var(--gold);
    color: var(--navy);
}

/* ============================================
   5. BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.btn::after {
    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:active::after {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), #b8962e);
    color: var(--navy);
    box-shadow: 0 4px 20px var(--gold-glow);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(201, 168, 76, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(201, 168, 76, 0.3);
}
.btn-outline:hover {
    border-color: var(--gold);
    background: var(--gold-glow);
    transform: translateY(-3px);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), #b8962e);
    color: var(--navy);
    box-shadow: 0 4px 20px var(--gold-glow);
}
.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(201, 168, 76, 0.35);
}

.btn-white {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.btn-white:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.btn-sm {
    padding: 0.6rem 1.6rem;
    font-size: 0.85rem;
}

/* ============================================
   6. HEADER & NAVIGATION
   ============================================ */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 22, 40, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.06);
    padding: 0.8rem 0;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(10, 22, 40, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    border-bottom-color: rgba(201, 168, 76, 0.1);
}

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

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
}
.logo:hover {
    transform: scale(1.02);
}
.logo .gold {
    color: var(--gold);
}
.logo .white {
    color: var(--white);
}

.nav-links {
    display: flex;
    gap: 2.2rem;
    list-style: none;
    align-items: center;
}
.nav-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    letter-spacing: 0.3px;
    cursor: pointer;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}
.nav-links a.btn {
    padding: 0.6rem 1.6rem;
    font-size: 0.85rem;
}
.nav-links a.btn::after {
    display: none;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.6rem;
    cursor: pointer;
    transition: var(--transition);
    padding: 0.4rem;
}
.mobile-toggle:hover {
    color: var(--gold);
}

/* ============================================
   7. HERO SECTION
   ============================================ */
.hero {
    padding: 10rem 0 6rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 140%;
    background: radial-gradient(ellipse, rgba(201, 168, 76, 0.04) 0%, transparent 70%);
    pointer-events: none;
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(-10%, 10%) scale(1.1);
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: clamp(2.8rem, 5.5vw, 4.6rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}
.hero-content h1 .highlight {
    color: var(--gold);
    position: relative;
}
.hero-content h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gold);
    opacity: 0.2;
    border-radius: 4px;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 520px;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.hero-btns {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 3.5rem;
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.hero-stats div h4 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: -0.5px;
}
.hero-stats div p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

.badge {
    display: inline-block;
    background: var(--gold-glow);
    color: var(--gold);
    padding: 0.3rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    border: 1px solid rgba(201, 168, 76, 0.1);
}

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-image .image-wrapper {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1/1;
    border-radius: var(--radius-xl);
    background: linear-gradient(145deg, var(--navy-light), var(--navy));
    border: 1px solid rgba(201, 168, 76, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    color: var(--gold);
    position: relative;
    overflow: hidden;
    animation: floatImage 6s ease-in-out infinite;
}

@keyframes floatImage {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

.hero-image .image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 40%, rgba(201, 168, 76, 0.05), transparent 60%);
}

.floating-card {
    position: absolute;
    background: rgba(10, 22, 40, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(201, 168, 76, 0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 16px;
    font-size: 0.85rem;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    animation: floatCard 6s ease-in-out infinite;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}
.floating-card:nth-child(2) {
    top: 10%;
    right: -10%;
    animation-delay: 0.5s;
}
.floating-card:nth-child(3) {
    bottom: 15%;
    left: -10%;
    animation-delay: 1.5s;
}
.floating-card:nth-child(4) {
    bottom: 30%;
    right: -5%;
    animation-delay: 2.5s;
}

@keyframes floatCard {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-12px);
    }
}

/* ============================================
   8. SECTION COMMON
   ============================================ */
section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3.5rem;
}
.section-title h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.8rem;
}
.section-title h2 .gold {
    color: var(--gold);
}
.section-title p {
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* ============================================
   9. ABOUT PAGE
   ============================================ */
.about-page {
    background: var(--navy);
}

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

.about-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1.2rem;
}
.about-text p {
    color: var(--gray);
    line-height: 1.9;
    margin-bottom: 1.2rem;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}
.about-values .value {
    background: rgba(255, 255, 255, 0.02);
    padding: 1.2rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.04);
    text-align: center;
    transition: var(--transition);
}
.about-values .value:hover {
    border-color: rgba(201, 168, 76, 0.15);
    background: var(--gold-glow);
    transform: translateY(-4px);
}
.about-values .value i {
    color: var(--gold);
    font-size: 1.6rem;
    margin-bottom: 0.3rem;
    display: block;
}
.about-values .value span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

/* ============================================
   10. ABOUT CAROUSEL
   ============================================ */
.about-carousel {
    position: relative;
    width: 100%;
    max-width: 550px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--navy);
    border: 1px solid rgba(201, 168, 76, 0.08);
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
}

.about-carousel .slides-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.about-carousel .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy-light);
}

.about-carousel .slide.active {
    opacity: 1;
}

.about-carousel .slide figure {
    margin: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy-light);
}

.about-carousel .slide figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-carousel .slide .fallback {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    color: var(--gray);
    padding: 2rem;
    text-align: center;
    width: 100%;
    height: 100%;
    background: var(--navy-light);
}
.about-carousel .slide .fallback i {
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.3;
}
.about-carousel .slide .fallback span {
    font-size: 0.9rem;
    color: var(--gray);
}
.about-carousel .slide .fallback small {
    color: rgba(255, 255, 255, 0.15);
    font-size: 0.7rem;
}

/* Carousel Controls */
.about-carousel .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(10, 22, 40, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--white);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    transition: var(--transition);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.about-carousel .carousel-btn:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.about-carousel .carousel-btn.prev {
    left: 16px;
}
.about-carousel .carousel-btn.next {
    right: 16px;
}

/* Carousel Dots */
.about-carousel .carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
    background: rgba(10, 22, 40, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 8px 16px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.about-carousel .carousel-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    padding: 0;
}

.about-carousel .carousel-dots button:hover {
    background: rgba(201, 168, 76, 0.4);
}

.about-carousel .carousel-dots button.active {
    background: var(--gold);
    transform: scale(1.25);
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.25);
}

/* Slide Counter */
.about-carousel .slide-counter {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(10, 22, 40, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--gray);
    border: 1px solid rgba(255, 255, 255, 0.04);
    z-index: 10;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* ============================================
   11. SERVICES PAGE
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: var(--transition);
    text-align: center;
}
.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 168, 76, 0.15);
    background: rgba(201, 168, 76, 0.03);
    box-shadow: var(--shadow-md);
}
.service-card .icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gold-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 2rem;
    color: var(--gold);
    transition: var(--transition);
}
.service-card:hover .icon {
    transform: scale(1.1) rotate(-5deg);
}
.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
}
.service-card p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ============================================
   12. PORTFOLIO PAGE
   ============================================ */
.portfolio {
    background: var(--navy-light);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.portfolio-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--navy);
    border: 1px solid rgba(255, 255, 255, 0.04);
    aspect-ratio: 4/3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    transition: var(--transition);
    cursor: pointer;
}
.portfolio-item:hover {
    transform: scale(1.03);
    border-color: rgba(201, 168, 76, 0.2);
    box-shadow: var(--shadow-md);
}
.portfolio-item i {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 0.8rem;
    transition: var(--transition);
}
.portfolio-item:hover i {
    transform: scale(1.1);
}
.portfolio-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}
.portfolio-item p {
    font-size: 0.85rem;
    color: var(--gray);
}

/* ============================================
   13. TESTIMONIALS PAGE
   ============================================ */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: var(--transition);
}
.testimonial-card:hover {
    border-color: rgba(201, 168, 76, 0.1);
    background: rgba(201, 168, 76, 0.02);
    transform: translateY(-4px);
}
.testimonial-card .stars {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}
.testimonial-card blockquote {
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    line-height: 1.8;
    font-size: 0.95rem;
}
.testimonial-card .author {
    margin-top: 1.2rem;
    font-weight: 600;
    color: var(--gold);
}
.testimonial-card .role {
    font-size: 0.8rem;
    color: var(--gray);
}

/* ============================================
   14. PRICING PAGE
   ============================================ */
.pricing {
    background: var(--navy-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.04);
    text-align: center;
    transition: var(--transition);
}
.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 168, 76, 0.1);
    box-shadow: var(--shadow-md);
}
.pricing-card.featured {
    border-color: rgba(201, 168, 76, 0.2);
    background: rgba(201, 168, 76, 0.03);
}
.pricing-card .price {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--gold);
    margin: 1rem 0;
}
.pricing-card .price span {
    font-size: 1rem;
    color: var(--gray);
    font-weight: 400;
}
.pricing-card ul {
    list-style: none;
    text-align: left;
    margin: 1.5rem 0 2rem;
}
.pricing-card ul li {
    padding: 0.5rem 0;
    color: var(--gray);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.pricing-card ul li i {
    color: var(--gold);
    font-size: 0.8rem;
}
.pricing-card .btn {
    width: 100%;
}

/* ============================================
   15. CONTACT PAGE
   ============================================ */
.contact {
    background: var(--navy-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
    color: var(--white);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
    margin-bottom: 1rem;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--gray);
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: rgba(201, 168, 76, 0.3);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 0 0 4px var(--gold-glow);
}
.contact-form textarea {
    min-height: 130px;
    resize: vertical;
}

.contact-info h3 {
    color: var(--gold);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}
.contact-info p {
    color: var(--gray);
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.contact-info p i {
    color: var(--gold);
    width: 20px;
}

.contact-info .social-links {
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0;
}
.contact-info .social-links a {
    color: var(--gray);
    font-size: 1.6rem;
    transition: var(--transition);
}
.contact-info .social-links a:hover {
    color: var(--gold);
    transform: translateY(-3px);
}

.faq-item {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.faq-item h4 {
    color: var(--gold);
    margin-bottom: 0.4rem;
}
.faq-item p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* ============================================
   16. CTA SECTION
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--gold), #b8962e);
    padding: 5rem 0;
    text-align: center;
    color: var(--navy);
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}
.cta-section h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
}
.cta-section p {
    color: rgba(10, 22, 40, 0.7);
    max-width: 500px;
    margin: 0 auto 2rem;
    font-size: 1.05rem;
    position: relative;
}
.cta-section .btn {
    background: var(--navy);
    color: var(--white);
    position: relative;
}
.cta-section .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.2);
}

/* ============================================
   17. FOOTER
   ============================================ */
footer {
    background: var(--navy-dark);
    border-top: 1px solid rgba(201, 168, 76, 0.05);
    padding: 3rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand .logo {
    font-size: 1.4rem;
}
.footer-brand p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    max-width: 300px;
}

.footer-links h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}
.footer-links a {
    display: block;
    color: var(--gray);
    text-decoration: none;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    transition: var(--transition);
    cursor: pointer;
}
.footer-links a:hover {
    color: var(--gold);
    transform: translateX(4px);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    text-align: center;
    font-size: 0.8rem;
    color: var(--gray);
}

/* ============================================
   18. RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    .hero-grid,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-btns {
        justify-content: center;
    }
    .hero-stats {
        justify-content: center;
    }
    .services-grid,
    .portfolio-grid,
    .testimonial-grid,
    .pricing-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .floating-card {
        display: none;
    }
    .about-values {
        grid-template-columns: 1fr 1fr;
    }
    .about-carousel {
        max-width: 100%;
        margin: 0 auto;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 22, 40, 0.98);
        backdrop-filter: blur(16px);
        padding: 2rem;
        gap: 1.2rem;
        border-bottom: 1px solid rgba(201, 168, 76, 0.05);
        box-shadow: var(--shadow-md);
    }
    .nav-links.open {
        display: flex;
    }
    .nav-links a {
        font-size: 1rem;
        padding: 0.4rem 0;
    }
    .mobile-toggle {
        display: block;
    }
    .services-grid,
    .portfolio-grid,
    .testimonial-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .hero-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .hero {
        padding: 8rem 0 4rem;
    }
    section {
        padding: 3rem 0;
    }
    .hero-image .image-wrapper {
        max-width: 350px;
        font-size: 5rem;
    }
    .about-values {
        grid-template-columns: 1fr;
    }
    .container {
        padding: 0 1.2rem;
    }
    .about-carousel .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    .about-carousel .carousel-btn.prev {
        left: 10px;
    }
    .about-carousel .carousel-btn.next {
        right: 10px;
    }
    .about-carousel .carousel-dots {
        padding: 6px 12px;
        gap: 8px;
        bottom: 14px;
    }
    .about-carousel .carousel-dots button {
        width: 8px;
        height: 8px;
    }
    .about-carousel .slide-counter {
        font-size: 0.65rem;
        padding: 3px 10px;
        top: 12px;
        right: 12px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-stats div h4 {
        font-size: 1.6rem;
    }
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .hero-image .image-wrapper {
        max-width: 280px;
        font-size: 4rem;
    }
    .pricing-card .price {
        font-size: 2.4rem;
    }
    .btn {
        padding: 0.7rem 1.8rem;
        font-size: 0.85rem;
    }
    .section-title h2 {
        font-size: 1.6rem;
    }
    .about-carousel .carousel-btn {
        width: 30px;
        height: 30px;
        font-size: 0.7rem;
    }
    .about-carousel .carousel-dots {
        padding: 4px 10px;
        gap: 6px;
    }
    .about-carousel .carousel-dots button {
        width: 6px;
        height: 6px;
    }
}

/* ============================================
   19. ANIMATIONS
   ============================================ */

/* Fade In Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger children */
.stagger > * {
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}
.stagger > *:nth-child(1) {
    animation-delay: 0.1s;
}
.stagger > *:nth-child(2) {
    animation-delay: 0.2s;
}
.stagger > *:nth-child(3) {
    animation-delay: 0.3s;
}
.stagger > *:nth-child(4) {
    animation-delay: 0.4s;
}
.stagger > *:nth-child(5) {
    animation-delay: 0.5s;
}
.stagger > *:nth-child(6) {
    animation-delay: 0.6s;
}

/* Smooth hover transitions for cards */
.service-card,
.portfolio-item,
.testimonial-card,
.pricing-card {
    will-change: transform;
}

/* Loading shimmer effect */
.shimmer {
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.02) 50%, transparent 100%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}