/* Global Variables */
:root {
    --primary-color: #f44786;
    /* Magenta */
    --secondary-color: #1a1a1a;
    /* Dark Grey/Black */
    --accent-color: #fff5f8;
    /* Light Pink Tint */
    --accent-pink: #df5ba4;
    /* Soft Pink */
    --text-color: #333333;
    --light-text: #ffffff;
    --overlay-color: rgba(0, 0, 0, 0.6);
    --font-heading: 'Marcellus', serif;
    --font-body: 'Raleway', sans-serif;
    --transition: all 0.3s ease;
    --section-padding: 80px 0;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--accent-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-navbar {
    max-width: none;
    padding: 0 20px;
    margin-right: 5%;
    margin-left: 5%;
}

.section {
    padding: var(--section-padding);
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--secondary-color);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 10px auto 0;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.highlight {
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-pink) 100%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(2px 2px 2px rgba(93, 7, 39, 0.419));
}

.center {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: visible;
}

.btn-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Primary Button - Rose Gold */
.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
}

.btn-primary:hover {
    background-color: #a61e63;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(214, 51, 132, 0.4);
}

/* Secondary Button - Dark with slide fill */
.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    overflow: hidden;
    z-index: 1;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--secondary-color);
    z-index: -1;
    transition: width 0.3s ease;
}

.btn-secondary:hover {
    color: #fff;
}

.btn-secondary:hover::before {
    width: 100%;
}

/* Outline Button - Primary color outline */
.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(214, 51, 132, 0.3);
}

/* CTA Button - Special gradient on hover */
.btn-lg.btn-primary {
    background-color: var(--primary-color);
    position: relative;
}

.btn-lg.btn-primary:hover {
    background: linear-gradient(135deg, #d63384, #f8b4d9, #e84393);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(214, 51, 132, 0.5);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

/* Dark text when navbar is scrolled */
.navbar.scrolled .logo {
    color: var(--secondary-color);
}

.navbar.scrolled .nav-links a {
    color: var(--secondary-color);
}

.navbar.scrolled .nav-links a::after {
    background-color: var(--primary-color);
}

.navbar.scrolled .hamburger {
    color: var(--secondary-color);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    transition: color 0.3s ease;
}

.logo span {
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-pink) 50%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #fff;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Eye-catching Contact Button */
.nav-btn {
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-pink) 50%, var(--primary-color) 100%);
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px rgba(232, 67, 147, 0.4);
    transition: all 0.3s ease;
}

.nav-btn::after {
    display: none !important;
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 67, 147, 0.6);
    filter: brightness(1.1);
}

.hamburger {
    display: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: 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%);
    z-index: -2;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.421);
    z-index: -1;
}

.hero-content {
    text-align: right;
    color: #fff;
    z-index: 1;
    max-width: 500px;
    /* Reduced width to fit in the empty space */
    padding: 0 20px;
    margin-right: 5%;
    margin-left: auto;
}

.hero-content .btn {
    position: relative;
    z-index: 10;
}

.hero-content .btn:hover {
    z-index: 10;
}

/* Inner Page Header */
/* Inner Page Header */
.page-header {
    height: 50vh;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--secondary-color);
    /* Fallback color */
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.page-header-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Dark Overlay on top of image but behind text */
.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.header-content {
    position: relative;
    z-index: 2;
}


.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
}

.breadcrumb {
    font-size: 1rem;
    color: #ccc;
}

.breadcrumb a {
    color: #fff;
}

.breadcrumb span {
    margin: 0 10px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.4;
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
}

.hero-content h1 .highlight {
    font-family: 'Raleway', sans-serif;
    font-size: 4rem;
    font-weight: 600;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translate(-50%, 0);
    }

    40% {
        transform: translate(-50%, -20px);
    }

    60% {
        transform: translate(-50%, -10px);
    }
}

/* About Section */
.about-container {
    display: flex;
    align-items: stretch;
    /* Stretch items to match height */
    gap: 50px;
}

.about-image {
    flex: 1;
    position: relative;
    display: flex;
    /* Allow image to fill height */
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    width: 100%;
    object-fit: cover;
    /* Maintain aspect ratio while filling height */
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--primary-color);
    color: #fff;
    padding: 20px;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: spin-slow 10s linear infinite;
}

@keyframes spin-slow {
    100% {
        transform: rotate(360deg);
    }
}

/* Counter act rotation for text */


.years {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.text {
    font-size: 0.8rem;
    text-transform: uppercase;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
    color: #555;
}

.features-list {
    margin-bottom: 30px;
}

.features-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.features-list li i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 1.2rem;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 300px;
    /* Adjusted height for 4 columns */
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Premium Lightbox Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.1);
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy pop effect */
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 2.5rem;
    color: #fff;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: var(--primary-color);
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Services Section */
.services {
    background-color: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.services-grid-3col {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 992px) {
    .services-grid-3col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid-3col {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: #fdfdfd;
    padding: 40px 30px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
    overflow: visible;
    /* Prevent icon clipping */
    will-change: transform, box-shadow;
}

/* Animated Gradient Border */
.service-card::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, #f8e8b0, #fce4ec, #e1bee7, #b2dfdb, #f8e8b0);
    background-size: 400% 400%;
    border-radius: 18px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: gradientBorder 3s ease infinite;
    will-change: opacity;
}

@keyframes gradientBorder {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(214, 51, 132, 0.2);
}

/* 3D Tilt will be handled by JavaScript */
.service-card.tilt {
    transition: transform 0.1s ease;
}

.icon-box {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.service-card:hover .icon-box {
    transform: scale(1.15);
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.service-card p {
    color: #666;
    font-size: 0.95rem;
}

.center-btn {
    text-align: center;
    margin-top: 40px;
}

/* Gallery Preview Section - 3D Flip Cards */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    perspective: 1000px;
    /* 3D perspective for the whole grid */
}

.flip-card {
    background-color: transparent;
    width: 100%;
    height: 300px;
    perspective: 1000px;
    /* Also add to individual card for fallback */
    cursor: pointer;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy flip */
    transform-style: preserve-3d;
    /* Enable 3D space */
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
    /* Flip on hover */
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    /* Hide back of face when flipped */
    backface-visibility: hidden;
    border-radius: 15px;
    overflow: hidden;
}

.flip-card-front {
    background-color: #fff;
}

.flip-card-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.flip-card-back {
    background: linear-gradient(135deg, var(--primary-color), #fdb2e0);
    color: white;
    transform: rotateY(180deg);
    /* Start flipped */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.flip-card-back h4 {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.788);
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.flip-card-back p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Testimonials */
.testimonials {
    /* Changed background image to something more elegant/abstract or a nice salon shot */
    background-image: linear-gradient(rgba(0, 0, 0, 0.348), rgba(0, 0, 0, 0.326)), url('../assets/images/background.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: relative;
    color: #fff;
    text-align: center;
    padding: 60px 0;
    /* Reduced padding from default 80px */
}

.testimonial-container {
    position: relative;
    max-width: 800px;
    margin: 20px auto 0;
    /* Reduced margin */
    padding: 0 40px;
}

.testimonial-slider {
    overflow: hidden;
    position: relative;
    min-height: 250px;
    /* Reduced min-height */
    /* Space for the card */
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: all 0.5s ease;
    transform: translateX(50px);
    pointer-events: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
    position: relative;
}

.stars {
    color: var(--primary-color);
    /* Reverted to Gold for this section */
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 25px;
    font-size: 1.2rem;
    line-height: 1.8;
}

.testimonial-card h4 {
    color: white;
    /* Reverted to Gold */
    margin-bottom: 5px;
    font-size: 1.4rem;
}

.role {
    font-size: 0.9rem;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    opacity: 0.7;
}

.slider-btn:hover {
    color: var(--secondary-color);
    /* Reverted to Gold */
    opacity: 1;
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

.slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: whitesmoke;
    /* Reverted to Gold */
    transform: scale(1.2);
}

.section-header.white h2,
.section-header.white p {
    color: #fff;
}

/* CTA Section */
.cta-section {
    background-color: var(--accent-color);
    padding: 100px 0;
}

.center-text {
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #555;
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding-top: 60px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: white;
    /* Clean solid background */
    position: relative;
}

.faq-container {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    background: #fff;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.faq-question {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #fff;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 0;
    font-family: var(--font-body);
}

.faq-question i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
    color: var(--primary-color);
    background: var(--accent-color);
    padding: 8px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #fff;
}

.faq-answer p {
    padding: 0 30px 25px 30px;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: -1px;
    /* Align border */
}

/* Active State */
.faq-item.faq-active {
    box-shadow: 0 10px 30px rgba(214, 51, 132, 0.1);
    border-color: var(--accent-pink);
}

.faq-item.faq-active .faq-question i {
    transform: rotate(180deg);
    background: var(--primary-color);
    color: white;
}

/* CSS height animation removed in favor of JS calculated height for better accuracy */

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
}

.footer-logo {
    color: #fff;
    margin-bottom: 15px;
    display: inline-block;
}

.slogan {
    color: #aaa;
    margin-bottom: 20px;
}

.social-links a {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    display: inlin-flex;
    /* Typo fix */
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-right: 10px;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.links-col h3,
.contact-col h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.links-col ul li {
    margin-bottom: 10px;
}

.links-col ul li a {
    color: #aaa;
}

.links-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.contact-info li {
    color: #aaa;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.contact-info li i {
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 5px;
}

.footer-bottom {
    background-color: #111;
    padding: 20px 0;
    text-align: center;
    color: #777;
    font-size: 0.9rem;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Reveal Classes */
.scroll-reveal {
    opacity: 0;
    transition: all 0.8s ease;
}

.scroll-reveal.up {
    transform: translateY(50px);
}

.scroll-reveal.left {
    transform: translateX(-50px);
}

.scroll-reveal.right {
    transform: translateX(50px);
}

.scroll-reveal.active {
    opacity: 1;
    transform: translate(0, 0);
}

/* Scroll Down Arrow */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 2rem;
    animation: bounce 2s infinite;
    z-index: 2;
    cursor: pointer;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        width: 70%;
        background-color: var(--secondary-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s;
    }

    .nav-links.nav-active {
        right: 0;
    }

    .hamburger {
        display: block;
        z-index: 1001;
    }

    .about-container {
        flex-direction: column;
    }

    .hero-content {
        max-width: 90%;
        margin-right: auto;
        text-align: center;
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content h1 .highlight {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .container {
        padding: 0 15px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .flip-card {
        height: 200px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .experience-badge {
        width: 80px;
        height: 80px;
        bottom: -10px;
        right: -10px;
    }

    .years {
        font-size: 1.2rem;
    }
}

/* Gallery CTA Section */
.gallery-cta {
    padding: 80px 0;
    background: white;
    text-align: center;
    color: #000000;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

.gallery-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    z-index: 0;
}

.gallery-cta .container {
    position: relative;
    z-index: 1;
}

.gallery-cta h2 {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    margin-bottom: 15px;
    color: #000000;
}

.gallery-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    color: #000000;
}

.gallery-cta .btn-primary {
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
    padding: 12px 30px;
}

.gallery-cta .btn-primary:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .gallery-cta h2 {
        font-size: 2rem;
    }

    .gallery-cta {
        padding: 50px 0;
    }
}