/* ===== CSS VARIABLES ===== */
:root {
    --color-primary: #1a1f2e;
    --color-secondary: #0d1117;
    --color-accent: #2dd4bf;
    --color-accent-hover: #14b8a6;
    --color-text: #ffffff;
    --color-text-muted: #94a3b8;
    --color-border: rgba(255, 255, 255, 0.1);
    --font-heading: 'A Love of Thunder', sans-serif;
    --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== FONT FACE ===== */
@font-face {
    font-family: 'A Love of Thunder';
    src: url('thunder.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--color-secondary);
    color: var(--color-text);
    line-height: 1.6;
}

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

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

/* ===== SCROLL ANIMATIONS ===== */
.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-up.animate-in {
    opacity: 1;
    transform: translateY(0);
}

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

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(13, 17, 23, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--color-border);
    animation: slideDown 0.6s ease-out;
    overflow: visible;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

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

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    height: 60px;
    width: auto;
    transition: all 0.4s ease;
    filter: drop-shadow(0 0 0px rgba(45, 212, 191, 0));
}

.logo:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 0 12px rgba(45, 212, 191, 0.6));
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        filter: drop-shadow(0 0 12px rgba(45, 212, 191, 0.6));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(45, 212, 191, 0.8));
    }
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.main-nav a:not(.contact-btn) {
    position: relative;
    padding: 0.5rem 0;
}


.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-nav a:hover::after {
    width: 100%;
}

.contact-btn {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    border: 2px solid var(--color-text);
    border-radius: 50px;
    transition: var(--transition);
    line-height: 1;
}

.contact-btn::after {
    display: none;
}

.contact-btn:hover {
    background: var(--color-accent);
    color: var(--color-primary);
    border-color: var(--color-accent);
}

.instagram-link {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    border-radius: 50%;
    transition: var(--transition);
}

.instagram-link:hover {
    background: var(--color-accent);
    color: var(--color-secondary);
    transform: scale(1.1) rotate(5deg);
}

.mobile-instagram-link {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
    width: 44px;
    height: 44px;
    position: relative;
}

.mobile-menu-toggle svg {
    transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
    transition: transform 0.1s linear;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg,
            rgba(13, 17, 23, 0.7) 0%,
            rgba(26, 31, 46, 0.85) 100%);
    z-index: 1;
    display: none; /* Hide overlay to show raw video */
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 900px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 1rem;
    font-weight: normal;
    letter-spacing: 0.02em;
    animation: fadeInUp 1s ease-out 0.5s both;
    transition: transform 0.1s linear;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--color-text-muted);
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 0.03em;
    animation: fadeInUp 1s ease-out 0.7s both;
    transition: transform 0.1s linear;
}

.hero-logo {
    max-width: 500px;
    margin: 0 auto 3rem;
    animation: fadeInUp 1s ease-out 0.9s both;
    transition: transform 0.1s linear;
}

.hero-logo img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
}

.hero-cta {
    display: inline-block;
    padding: 1rem 3rem;
    background: transparent;
    border: 2px solid var(--color-accent);
    color: var(--color-accent);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.1s linear;
    animation: fadeInUp 1s ease-out 1.1s both;
}

.hero-cta:hover {
    background: var(--color-accent);
    color: var(--color-secondary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(45, 212, 191, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
    transition: opacity 0.1s linear;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid var(--color-accent);
    border-bottom: 2px solid var(--color-accent);
    transform: rotate(45deg);
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-choose {
    padding: 8rem 0;
    background: var(--color-primary);
    position: relative;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            var(--color-accent) 50%,
            transparent);
}

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

.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    font-weight: normal;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
            var(--color-accent),
            transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.feature-card:hover {
    transform: translateY(-8px) rotateX(2deg);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-accent);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) translateY(-5px);
    filter: drop-shadow(0 5px 15px rgba(45, 212, 191, 0.4));
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 8rem 0;
    background: linear-gradient(135deg,
            var(--color-secondary) 0%,
            var(--color-primary) 100%);
    text-align: center;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%,
            rgba(45, 212, 191, 0.1) 0%,
            transparent 70%);
    pointer-events: none;
}

.cta-section h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
    font-weight: normal;
}

.cta-section p {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    background: var(--color-accent);
    color: var(--color-secondary);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(45, 212, 191, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::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;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 50px rgba(45, 212, 191, 0.5);
    background: var(--color-accent-hover);
}

.cta-button:active {
    transform: translateY(-2px) scale(0.98);
    box-shadow: 0 10px 30px rgba(45, 212, 191, 0.4);
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--color-secondary);
    border-top: 1px solid var(--color-border);
    padding: 4rem 0 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    max-width: 280px;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.footer-tagline {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.footer-column h4 {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

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

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    position: relative;
    display: inline-block;
}

.footer-column a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-column a:hover {
    color: var(--color-accent);
    padding-left: 20px;
}

.footer-column a:hover::before {
    left: 0;
    opacity: 1;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 2rem 0;
    border-top: 1px solid var(--color-border);
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* ===== ABOUT PAGE ===== */
.page-hero {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg,
            var(--color-secondary) 0%,
            var(--color-primary) 100%);
    text-align: center;
    position: relative;
    margin-top: 80px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 35vh;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%,
            rgba(45, 212, 191, 0.15) 0%,
            transparent 50%);
    pointer-events: none;
}

.page-hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle,
            rgba(45, 212, 191, 0.1) 0%,
            transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-30px, 30px) scale(1.1);
    }
}

.about-hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg,
            rgba(13, 17, 23, 0.7) 0%,
            rgba(26, 31, 46, 0.85) 100%);
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.page-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 4.5rem);
    margin-bottom: 1rem;
    font-weight: normal;
}

.page-hero p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--color-text-muted);
}

.about-content {
    padding: 6rem 0;
}

.about-intro {
    max-width: 900px;
    margin: 0 auto 8rem;
}

.intro-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 2rem;
    font-weight: normal;
}

.intro-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.intro-text p:last-child {
    margin-bottom: 0;
}

/* Credentials Section */
.credentials-section {
    max-width: 1000px;
    margin: 0 auto 8rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.credential-card {
    display: block;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 3rem;
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.credential-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(45, 212, 191, 0.2);
}

.credential-icon {
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.credential-card:hover .credential-icon {
    transform: scale(1.1);
}

.credential-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.credential-card p {
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.credential-link-text {
    color: var(--color-accent);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.credential-card:hover .credential-link-text {
    gap: 0.75rem;
}

/* Pack Section */
.pack-section {
    max-width: 1000px;
    margin: 0 auto 8rem;
}

.pack-section h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 3rem;
    text-align: center;
    font-weight: normal;
}

.pack-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 3rem;
}

.pack-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.pack-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.pack-text p {
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.pack-text p:last-child {
    margin-bottom: 0;
}

/* Approach Section */
.approach-section {
    max-width: 1000px;
    margin: 0 auto 6rem;
}

.approach-section h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 3rem;
    text-align: center;
    font-weight: normal;
}

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

.approach-item {
    padding: 2rem;
}

.approach-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--color-accent);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.approach-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.approach-item p {
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* About CTA */
.about-cta {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem 2rem;
}

.about-cta h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
    font-weight: normal;
}

.about-cta p {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
}

/* ===== SERVICES PAGE ===== */
.services-hero {
    background-image: url('media/services_hero.jpg');
    background-size: cover;
    background-position: center;
}

.services-content {
    padding: 6rem 0;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 6rem;
    text-align: center;
}

.services-intro h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    font-weight: normal;
}

.services-intro p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--color-text-muted);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 8rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 2.5rem;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px) rotateX(2deg);
    border-color: var(--color-accent);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(45, 212, 191, 0.2);
}

.service-icon {
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-icon {
    transform: scale(1.1) translateY(-5px);
    filter: drop-shadow(0 5px 15px rgba(45, 212, 191, 0.4));
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card>p {
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-accent);
}

/* Process Section */
.process-section {
    max-width: 900px;
    margin: 0 auto 8rem;
}

.process-section h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: normal;
}

.process-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-bottom: 4rem;
}

.process-timeline {
    position: relative;
}

.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: rgba(45, 212, 191, 0.1);
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-accent);
    z-index: 1;
    position: relative;
}

.step-content {
    flex-grow: 1;
    padding-top: 0.5rem;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.step-content p {
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* What's Included Section */
.included-section {
    max-width: 900px;
    margin: 0 auto 8rem;
    padding: 4rem;
    background: rgba(45, 212, 191, 0.05);
    border: 1px solid rgba(45, 212, 191, 0.2);
    border-radius: 24px;
}

.included-section h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: normal;
}

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

.included-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.included-item svg {
    flex-shrink: 0;
    color: var(--color-accent);
}

.included-item span {
    font-size: 1.05rem;
    color: var(--color-text);
}

/* Services CTA */
.services-cta {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem 2rem;
}

.services-cta h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
    font-weight: normal;
}

.services-cta p {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
}

/* Testimonials Section */
.testimonials-section {
    max-width: 1200px;
    margin: 0 auto 8rem;
    padding: 6rem 2rem;
    background: linear-gradient(135deg,
            rgba(45, 212, 191, 0.05) 0%,
            rgba(45, 212, 191, 0.02) 100%);
    border-radius: 24px;
    border: 1px solid rgba(45, 212, 191, 0.2);
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
            transparent,
            var(--color-accent) 50%,
            transparent);
    border-radius: 24px 24px 0 0;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    font-weight: normal;
    color: var(--color-text);
}

.testimonials-header p {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

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

.testimonial-card {
    background: rgba(13, 17, 23, 0.6);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 2.5rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
}

.testimonial-card.featured {
    grid-column: span 2;
    background: rgba(45, 212, 191, 0.08);
    border-color: var(--color-accent);
    box-shadow: 0 10px 40px rgba(45, 212, 191, 0.15);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent);
    box-shadow: 0 10px 30px rgba(45, 212, 191, 0.2);
}

.stars {
    color: var(--color-accent);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.2rem;
}

.testimonial-card blockquote {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-text);
    margin: 0 0 1.5rem 0;
    flex-grow: 1;
    font-style: italic;
}

.testimonial-card.featured blockquote {
    font-size: 1.15rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-author strong {
    font-size: 1.1rem;
    color: var(--color-text);
}

.review-link {
    color: var(--color-accent);
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.review-link:hover {
    gap: 0.75rem;
}

.testimonials-cta {
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

.review-cta-stacked {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    max-width: 700px;
    margin: 0 auto;
}

.review-cta-block {
    text-align: center;
    width: 100%;
}

.review-cta-block h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.review-cta-block p {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.leave-review-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 2px solid var(--color-accent);
    color: var(--color-accent);
    font-weight: 700;
    border-radius: 50px;
    transition: var(--transition);
    text-decoration: none;
}

.leave-review-btn:hover {
    background: var(--color-accent);
    color: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(45, 212, 191, 0.3);
}

.cta-divider-horizontal {
    width: 150px;
    height: 1px;
    background: var(--color-border);
}

.google-reviews-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--color-accent);
    color: var(--color-secondary);
    font-weight: 700;
    border-radius: 50px;
    transition: var(--transition);
    text-decoration: none;
}

.google-reviews-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(45, 212, 191, 0.3);
    background: var(--color-accent-hover);
}

/* ===== PORTFOLIO PAGE ===== */
.portfolio-content {
    padding: 6rem 0;
}

.portfolio-intro {
    max-width: 800px;
    margin: 0 auto 6rem;
    text-align: center;
}

.portfolio-intro h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    font-weight: normal;
}

.portfolio-intro p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--color-text-muted);
}

.portfolio-grid {
    display: grid;
    gap: 4rem;
    margin-bottom: 8rem;
}

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

.portfolio-item:nth-child(even) {
    direction: rtl;
}

.portfolio-item:nth-child(even)>* {
    direction: ltr;
}

.portfolio-item.featured {
    background: rgba(45, 212, 191, 0.05);
    border: 1px solid rgba(45, 212, 191, 0.2);
    border-radius: 24px;
    padding: 3rem;
    grid-column: 1 / -1;
}

.portfolio-media {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.portfolio-media a {
    display: block;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.portfolio-media a::before {
    content: 'View Project';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(45, 212, 191, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0d1117;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.portfolio-media a:hover::before {
    opacity: 1;
}

.portfolio-media img,
.portfolio-media video {
    transition: transform 0.4s ease;
}

.portfolio-media a:hover img,
.portfolio-media a:hover video {
    transform: scale(1.08);
}

.portfolio-item:hover .portfolio-media {
    transform: translateY(-8px);
    box-shadow: 0 25px 70px rgba(45, 212, 191, 0.3);
}

.portfolio-media img,
.portfolio-video {
    width: 100%;
    height: auto;
    display: block;
}

.portfolio-details h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.portfolio-location {
    color: var(--color-accent);
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.portfolio-description {
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.tag {
    background: rgba(45, 212, 191, 0.1);
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.portfolio-link {
    color: var(--color-accent);
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.portfolio-link:hover {
    gap: 0.75rem;
}

/* Portfolio CTA */
.portfolio-cta {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem 2rem;
}

.portfolio-cta h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
    font-weight: normal;
}

.portfolio-cta p {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
}

/* ===== CONTACT PAGE ===== */
.contact-hero {
    background: linear-gradient(135deg, #1a1f2e 0%, #0d1117 100%);
}

.contact-hero h1 {
    white-space: normal;
}

.contact-content {
    padding: 6rem 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.contact-info h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    font-weight: normal;
}

.contact-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: 3rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

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

.method-icon {
    flex-shrink: 0;
    color: var(--color-accent);
}

.method-details h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.method-details p,
.method-details a {
    color: var(--color-text-muted);
    line-height: 1.6;
}

.method-details a {
    transition: var(--transition);
}

.method-details a:hover {
    color: var(--color-accent);
}

.contact-note {
    background: rgba(45, 212, 191, 0.05);
    border: 1px solid rgba(45, 212, 191, 0.2);
    border-radius: 12px;
    padding: 2rem;
}

.contact-note p {
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.contact-note p:last-child {
    margin-bottom: 0;
}

.contact-note strong {
    color: var(--color-text);
}

/* Contact Form */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 3rem;
    position: sticky;
    top: 100px;
}

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

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(13, 17, 23, 0.8);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    color: var(--color-text);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    background: rgba(13, 17, 23, 0.95);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #6b7280;
}

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

.submit-btn {
    padding: 1rem 2.5rem;
    background: var(--color-accent);
    color: var(--color-secondary);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 0.5rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(45, 212, 191, 0.3);
    background: var(--color-accent-hover);
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-message.success {
    background: rgba(45, 212, 191, 0.1);
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
    display: block;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid #ef4444;
    color: #ef4444;
    display: block;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .main-nav {
        gap: 1.5rem;
        font-size: 0.85rem;
    }

    .features-grid {
        gap: 2rem;
    }

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

    .portfolio-item {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .portfolio-item:nth-child(even) {
        direction: ltr;
    }

    .credentials-section {
        gap: 2rem;
    }

    .pack-content {
        gap: 2.5rem;
    }

    .approach-grid {
        gap: 2rem;
    }

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

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 1rem 2rem 1rem 1rem;
        position: relative;
        overflow: visible;
    }

    .main-nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        height: calc(100vh - 80px);
        background: rgba(13, 17, 23, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        align-items: center;
        justify-content: flex-start;
        overflow-y: auto;
        z-index: 9999;
    }

    .main-nav.active {
        transform: translateX(0);
    }

    .main-nav a {
        text-align: center;
        font-size: 1.3rem;
        padding: 1.2rem 1rem;
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .main-nav a:last-child {
        border-bottom: none;
    }

    .instagram-link {
        display: none;
    }

    .mobile-instagram-link {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        color: var(--color-accent);
        font-size: 1.1rem;
        padding: 1.5rem 1rem;
        margin-top: 1rem;
        border-top: 2px solid var(--color-border);
    }

    .main-nav .contact-btn {
        background: transparent;
        border: 2px solid var(--color-text);
        color: var(--color-text);
        padding: 0.7rem 2rem;
        border-radius: 50px;
        width: auto;
        max-width: 200px;
        margin: 0.5rem auto 0;
        transition: var(--transition);
    }

    .main-nav .contact-btn:hover {
        background: var(--color-accent);
        border-color: var(--color-accent);
        color: var(--color-primary);
    }

    .contact-btn {
        width: auto;
        max-width: 300px;
        margin: 0.5rem auto;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .contact-btn {
        width: auto;
        padding: 0.8rem 2.5rem;
        margin-top: 0.5rem;
    }

    .hero {
        min-height: 500px;
    }

    .hero-content {
        padding: 1.5rem;
    }

    .page-hero {
        padding: 5rem 0 3rem;
        min-height: 30vh;
    }

    .about-content {
        padding: 4rem 0;
    }

    .about-intro {
        margin-bottom: 5rem;
    }

    .credentials-section {
        grid-template-columns: 1fr;
        margin-bottom: 5rem;
    }

    .pack-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pack-section {
        margin-bottom: 5rem;
    }

    .approach-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-section {
        padding: 4rem 1.5rem;
        margin-bottom: 5rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-card.featured {
        grid-column: span 1;
    }

    .review-cta-stacked {
        gap: 2rem;
        padding: 0 1rem;
    }

    .review-cta-block h3 {
        font-size: 1.5rem;
    }

    .services-content {
        padding: 4rem 0;
    }

    .services-intro {
        margin-bottom: 4rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 5rem;
    }

    .process-section {
        margin-bottom: 5rem;
    }

    .process-timeline::before {
        left: 20px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }

    .process-step {
        gap: 1.5rem;
    }

    .included-section {
        padding: 2.5rem 1.5rem;
        margin-bottom: 5rem;
    }

    .included-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .portfolio-content {
        padding: 4rem 0;
    }

    .portfolio-intro {
        margin-bottom: 4rem;
    }

    .portfolio-grid {
        gap: 3rem;
        margin-bottom: 5rem;
    }

    .portfolio-item {
        grid-template-columns: 1fr;
    }

    .portfolio-item.featured {
        padding: 2rem;
    }

    .portfolio-details h3 {
        font-size: 1.5rem;
    }

    .portfolio-tags {
        gap: 0.5rem;
    }

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

    .contact-form-wrapper {
        position: static;
    }

    .why-choose {
        padding: 5rem 0;
    }

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

    .features-grid {
        grid-template-columns: 1fr;
    }

    .cta-section {
        padding: 5rem 0;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .scroll-indicator {
        bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .logo {
        height: 45px;
    }

    .hero-logo {
        max-width: 350px;
    }

    .feature-card {
        padding: 2rem;
    }

    .contact-hero h1 {
        font-size: 1.8rem;
    }

    .contact-hero {
        padding: 5rem 0 3rem;
        min-height: 30vh;
    }

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

    .footer-logo {
        margin: 0 auto 1rem;
    }

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