/* Import Components */
@import url('hero.css');
@import url('navigation.css');

/* Navbar Styles */
.navbar {
    background-color: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 0.8rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background-color: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--text-color) !important;
    font-size: 1.5rem;
    transition: var(--transition);
}

.navbar-brand:hover {
    color: var(--primary-color) !important;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
    transition: var(--transition);
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28242, 203, 222, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.navbar-nav .nav-link {
    color: var(--text-color) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    margin: 0 0.3rem;
    position: relative;
    transition: var(--transition);
    font-size: 1rem;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

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

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
}

.navbar .btn-primary {
    background-color: var(--primary-color);
    color: #fff !important;
    border: none;
    border-radius: 50px;
    padding: 0.6rem 1.5rem !important;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(242, 203, 222, 0.4);
}

.navbar .btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 203, 222, 0.6);
}

/* Mobile Menu Styles */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: #fff;
        margin-top: 1rem;
        padding: 1rem;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .navbar-nav {
        padding: 1rem 0;
    }

    .navbar-nav .nav-link {
        padding: 0.8rem 0 !important;
        margin: 0.2rem 0;
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .navbar .btn-primary {
        width: 100%;
        margin-top: 0.5rem;
    }
}

/* Base Styles & Variables */
:root {
    --primary-color: #f2cbde;
    --primary-dark: #e6a8c8;
    --secondary-color: #333;
    --text-color: #333;
    --light-text: #fff;
    --light-bg: #f9f9f9;
    --transition: all 0.3s ease;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --header-height: 80px;
    --mobile-padding: 20px;
    --border-radius: 8px;
    --container-padding: 15px;
}

/* Responsive Breakpoints */
:root {
    --mobile: 480px;
    --tablet: 768px;
    --desktop: 992px;
    --large-desktop: 1200px;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}


body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
}

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

ul {
    list-style: none;
}

/* Container System */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    position: relative;
    z-index: 2;
}

/* Responsive Container Widths */
.container-fluid {
    width: 100%;
    padding: 0 var(--container-padding);
    margin: 0 auto;
}

/* Responsive Grid System */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 calc(-1 * var(--container-padding));
}

[class*="col-"] {
    width: 100%;
    padding: 0 var(--container-padding);
    margin-bottom: 30px;
}

/* Responsive Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.hide { display: none !important; }
.show { display: block !important; }

/* Responsive Visibility */
.hide-on-mobile { display: block; }
.show-on-mobile { display: none; }

/* Responsive Typography */
html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

/* Base Typography */
body {
    font-size: 1rem;
    line-height: 1.6;
}

h1 { font-size: 2rem; line-height: 1.2; }
h2 { font-size: 1.75rem; line-height: 1.25; }
h3 { font-size: 1.5rem; line-height: 1.3; }
h4 { font-size: 1.25rem; line-height: 1.35; }
h5 { font-size: 1.125rem; line-height: 1.4; }
h6 { font-size: 1rem; line-height: 1.5; }

/* Responsive Typography Adjustments */
@media (min-width: 576px) {
    html { font-size: 100%; }
    h1 { font-size: 2.25rem; }
    h2 { font-size: 2rem; }
}

@media (min-width: 768px) {
    html { font-size: 102.5%; }
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2.25rem; }
    
    .hide-on-mobile { display: block; }
    .show-on-mobile { display: none; }
}

@media (min-width: 992px) {
    html { font-size: 105%; }
    h1 { font-size: 2.75rem; }
    h2 { font-size: 2.5rem; }
}

@media (min-width: 1200px) {
    html { font-size: 110%; }
    h1 { font-size: 3rem; }
    h2 { font-size: 2.75rem; }
}

/* Mobile-First Typography */
@media (max-width: 767px) {
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
    
    .hide-on-mobile { display: none; }
    .show-on-mobile { display: block; }
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
    border: 0;
}

/* Responsive Embeds */
.embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
}

.embed-responsive::before {
    display: block;
    content: "";
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Responsive Video */
video {
    max-width: 100%;
    height: auto;
}

/* Ensure proper box sizing */
*, *::before, *::after {
    box-sizing: inherit;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 24px;
    background: var(--primary-color);
    color: var(--text-color);
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    touch-action: manipulation;
}

.btn:hover,
.btn:focus {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    outline: none;
}

.btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Button Sizes */
.btn-sm {
    padding: 8px 16px;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.125rem;
}

/* Button Variations */
.btn-primary {
    background: var(--primary-color);
    color: var(--text-color);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--light-text);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Button with Icon */
.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-icon i {
    margin-right: 8px;
}

.section-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
    line-height: 1.3;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 60px;
    font-size: 1.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.header.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 0 15px;
    width: 100%;
    margin: 0 auto;
}

.logo {
    display: inline-block;
    text-decoration: none;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color);
    letter-spacing: -0.5px;
    margin: 0;
    padding: 8px 0;
    line-height: 1.2;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.logo h1:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.logo h1:active {
    transform: translateY(0);
}

.logo:hover h1 {
    transform: translateY(-2px);
}

.logo span {
    color: var(--primary-color);
    font-weight: 700;
    transition: color 0.3s ease;
}

.logo:hover span {
    color: var(--text-color);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    list-style: none;
    position: relative;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    position: relative;
    padding: 10px 0;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a:focus,
.nav-menu a.active {
    color: var(--primary-dark);
    outline: none;
}

.nav-menu a:hover::before,
.nav-menu a:focus::before,
.nav-menu a.active::before {
    width: 100%;
}

/* Mobile Menu Button */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 24px;
    cursor: pointer;
    z-index: 1001;
    padding: 8px 4px;
    background: transparent;
    border: none;
    transition: transform 0.3s ease;
}

.hamburger:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 4px;
    border-radius: 4px;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2.5px;
    background-color: var(--text-color);
    transition: all 0.3s ease;
    border-radius: 3px;
    transform-origin: center;
}

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

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

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

/* Mobile Menu Toggle */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 24px;
    padding: 5px 0;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--text-color);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* Mobile Menu */
@media (max-width: 991.98px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 400px;
        height: 100vh;
        background-color: #fff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 25px;
        margin: 0;
        padding: 80px 30px;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-menu a {
        display: block;
        font-size: 1.2rem;
        padding: 12px 0;
        width: 100%;
    }

    .nav-menu a::before {
        display: none;
    }

    .nav-menu a.active,
    .nav-menu a:hover {
        color: var(--primary-color);
        background-color: rgba(242, 203, 222, 0.1);
        border-radius: 6px;
    }

    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background-color: #fff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: right 0.4s ease-in-out;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        padding: 80px 20px 40px;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-menu a {
        display: block;
        padding: 12px 0;
        font-size: 1.1rem;
    }

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

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

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

    body.menu-open {
        overflow: hidden;
    }

    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .menu-overlay.active {
        display: block;
    }
.hero {
    min-height: 100vh;
    max-height: 1200px;
    height: 100vh;
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                url('../images/branding/salon.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    padding: 100px 0;
    box-sizing: border-box;
    color: black;
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    padding: 0 30px;
    margin: 0 auto;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: calc(100vh - 200px);
}

.hero-text {
    margin: 0 auto 40px;
    max-width: 900px;
}

.hero-subtitle {
    color: var(--primary-dark);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.hero h2, .hero-title {
    font-size: 3.5rem;
    margin: 0 0 25px 0;
    line-height: 1.2;
    color: var(--primary-dark);
    animation: fadeInUp 0.6s 0.4s forwards;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.3rem;
    margin: 0 auto 30px;
    max-width: 700px;
    line-height: 1.7;
    color: var(--primary-dark);
    opacity: 0.9;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero .btn {
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.hero .btn i {
    transition: transform 0.3s ease;
}

.hero .btn:hover i {
    transform: translateX(5px);
}

.hero .btn-primary {
    background-color: var(--primary-color);
    color: #000000;
    border: 2px solid var(--primary-color);
}

.hero .btn-primary:hover {
    background-color: transparent;
    color: #e6a8c8;
    border-color: #e6a8c8;
}

.hero .btn-secondary {
    background-color: transparent;
    color: #e6a8c8;
    border: 2px solid rgba(230, 168, 200, 0.5);
}

.hero .btn-secondary:hover {
    background-color: rgba(230, 168, 200, 0.1);
    border-color: #e6a8c8;
}

.hero-features {
    width: 100%;
    max-width: 1000px;
    margin: 40px auto 0;
    padding: 0 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Hide scrollbar for cleaner look but keep functionality */
.hero-features::-webkit-scrollbar {
    display: none;
}

/* Features Grid */
.features-grid {
    display: flex;
    justify-content: center;
    gap: 15px;
    width: fit-content;
    min-width: 100%;
    margin: 0 auto;
    padding: 10px 0;
}

/* Feature links */
.feature-link {
    text-decoration: none;
    color: inherit;
    display: block;
    flex-shrink: 0; /* Prevents items from shrinking */
}

.hero-features .feature {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 30px;
    color: var(--primary-color);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.hero-features .feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.hero-features .feature i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.hero-features span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: var(--primary-color);
    white-space: nowrap;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .features-grid {
        justify-content: flex-start;
        padding-bottom: 15px;
    }
    
    .hero-features {
        padding: 0 15px;
    }
}

.hero-badge {
    position: absolute;
    top: 20px;
    right: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    animation: fadeIn 0.6s 1.2s forwards;
}

.badge-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.5rem;
}

.badge-content {
    display: flex;
    flex-direction: column;
}

.badge-title {
    font-weight: 700;
    font-size: 1rem;
}

.badge-subtitle {
    font-size: 0.85rem;
    opacity: 0.8;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    opacity: 0;
    animation: fadeIn 1s 1.5s forwards, bounce 2s infinite 2.5s;
    z-index: 2;
}

.hero-scroll i {
    margin-top: 10px;
    font-size: 1.2rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* Responsive Design - Mobile First Approach */

/* Base mobile styles (applied to all screens) */
.container {
    width: 100%;
    padding: 0 15px;
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    .container {
        max-width: 540px;
        margin: 0 auto;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
    
    /* Add responsive grid for services, team, etc. */
    .services-grid, .team-grid, .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-badge {
        position: static;
        margin: 30px auto 0;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 992px) {
    .hero {
        background-attachment: scroll;
    }
}

@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 100px 0 60px;
        text-align: left;
        background-position: left center;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .service-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .service-card-inner {
        padding: 30px 20px;
    }
    
    p.features-grid {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 40px;
        flex-wrap: nowrap;
        width: 100%;
    }
}

.hero-features {
    display: flex;
    gap: 30px;
    margin: 40px auto 0;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100%;
    padding: 0 20px;
}

.hero-features span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
    white-space: nowrap;
}

.hero-features i {
    color: var(--primary-color);
}

.service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* CTA Section */
.cta-section {
    padding: 140px 20px;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.85)), 
                url('../images/branding/cutting.jpg') center/cover no-repeat fixed;
    color: #fff;
    position: relative;
    overflow: hidden;
    background-attachment: fixed;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(242, 203, 222, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    animation: fadeInUp 0.8s ease-out;
}

.cta-badge {
    display: inline-block;
    background: var(--primary-color);
    color: #000;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    animation: fadeIn 0.8s 0.2s both;
}

.cta-section h2 {
    font-size: 3.2rem;
    margin: 0 auto 25px;
    line-height: 1.2;
    max-width: 800px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s 0.3s both;
}

.cta-section .highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.cta-section .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(242, 203, 222, 0.3);
    z-index: -1;
    border-radius: 4px;
}

.cta-section p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
    opacity: 0;
    animation: fadeInUp 0.8s 0.4s both;
    color: rgba(255, 255, 255, 0.9);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 0 auto 50px;
    flex-wrap: wrap;
    max-width: 900px;
    opacity: 0;
    animation: fadeInUp 0.8s 0.5s both;
}

.cta-feature {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 12px 25px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    min-width: 180px;
    text-align: center;
}

.cta-feature:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.cta-feature i {
    color: var(--primary-color);
    font-size: 1.2rem;
    background: rgba(0, 0, 0, 0.3);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s 0.6s both;
}

.cta-section .btn {
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-section .btn i {
    transition: transform 0.3s ease;
}

.cta-section .btn:hover i {
    transform: translateX(5px);
}

.cta-section .btn-primary {
    background-color: var(--primary-color);
    color: #000;
    border: 2px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-section .btn-primary:hover {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.cta-section .btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-section .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-3px);
}

.cta-note {
    margin-top: 30px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    animation: fadeIn 0.8s 1s both;
}

.cta-note i {
    color: var(--primary-color);
}

.cta-image {
    position: relative;
    max-width: 500px;
    margin: 60px auto 0;
    opacity: 0;
    animation: fadeIn 0.8s 0.7s both;
}

.cta-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 5px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s ease;
}

.cta-image:hover img {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.discount-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--primary-color);
    color: #000;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.8rem;
    line-height: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: pulse 2s infinite;
}

.discount-badge span {
    font-size: 0.9rem;
    font-weight: 600;
    display: block;
    margin-top: 5px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive CTA Section */
@media (max-width: 992px) {
    .cta-section {
        padding: 100px 20px;
    }
    
    .cta-section h2 {
        font-size: 2.8rem;
    }
    
    .cta-features {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 80px 20px;
        background-attachment: scroll;
    }
    
    .cta-section h2 {
        font-size: 2.3rem;
    }
    
    .cta-section p {
        font-size: 1.1rem;
    }
    
    .cta-features {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-feature {
        width: 100%;
        max-width: 300px;
        justify-content: flex-start;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-section .btn {
        width: 100%;
        justify-content: center;
        padding: 18px 30px;
        font-size: 1rem;
        min-height: 56px;
        flex-wrap: nowrap;
        overflow: hidden;
    }
    
    .discount-badge {
        width: 80px;
        height: 80px;
        font-size: 1.5rem;
    }
    
    .discount-badge span {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .cta-section p {
        font-size: 1rem;
    }
    
    .cta-badge {
        font-size: 0.8rem;
        padding: 6px 15px;
    }
    
    .cta-section .btn {
        padding: 16px 24px;
        font-size: 0.95rem;
        min-height: 52px;
        gap: 8px;
        flex-wrap: nowrap;
        overflow: hidden;
    }
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 70px 0 0;
    font-size: 1rem;
    line-height: 1.7;
    position: relative;
    overflow: hidden;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 1;
}

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

.footer-about {
    padding: 0 20px 0 0;
    margin-bottom: 0;
}

.footer-links,
.footer-contact {
    padding: 0 10px;
    margin-bottom: 0;
}

.footer-social {
    padding: 0 0 0 20px;
    margin-bottom: 0;
}

.footer h3,
.footer h4 {
    color: #fff;
    font-size: 1.3rem;
    margin: 0 0 22px 0;
    padding-bottom: 12px;
    position: relative;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer h3::after,
.footer h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.footer-about p {
    color: #bbb;
    margin: 0 0 22px 0;
    line-height: 1.7;
    padding-right: 10px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
    position: relative;
    padding-left: 15px;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -5px;
    color: var(--primary-color);
    opacity: 0;
    transition: all 0.3s ease;
}

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

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

.footer-contact .footer-address {
    margin-bottom: 16px;
    color: #bbb;
}

.footer-contact .address-line {
    margin: 0;
    padding: 2px 0;
    display: flex;
    align-items: center;
}

.footer-contact .address-line:not(:first-child) {
    padding-left: 32px; /* Match icon width + margin */
}

.footer-contact p {
    margin: 0 0 16px 0;
    color: #bbb;
    line-height: 1.7;
    display: flex;
    align-items: center;
}

.footer-contact i {
    color: var(--primary-color);
    margin-right: 12px;
    margin-top: 5px;
    min-width: 20px;
    text-align: center;
    font-size: 1.1rem;
}

.business-hours {
    margin-top: 20px;
    width: 100%;
}

.business-hours h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.hours-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    line-height: 1.5;
}

.hours-row .day {
    color: #fff;
    font-weight: 500;
    min-width: 120px;
    display: inline-block;
}

.hours-row .time {
    color: #bbb;
    margin-left: auto;
}

/* For the closed state */
.hours-row .time:last-child {
    color: #ff6b6b;
}
}

.footer-social h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.social-links a i {
    position: relative;
    z-index: 2;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-color: transparent;
}

.social-links a:hover::before {
    opacity: 0.1;
}

.social-links a:hover i {
    transform: scale(1.1);
}

/* Individual icon colors */
.social-links .fa-facebook-f { color: #1877f2; }
.social-links .fa-instagram { 
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.social-links .fa-tiktok { color: #000; }

/* Hover effects */
.social-links a:hover .fa-facebook-f { 
    color: #1877f2;
    -webkit-text-fill-color: #1877f2;
}
.social-links a:hover .fa-instagram { 
    -webkit-text-fill-color: transparent;
}
.social-links a:hover .fa-tiktok { 
    color: #000;
    -webkit-text-fill-color: #000;
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.footer-bottom {
    background: #151515;
    padding: 25px 0;
    text-align: center;
    border-top: 1px solid #333;
    font-size: 0.9rem;
    color: #888;
    line-height: 1.7;
    margin-top: 20px;
}

.footer-bottom p {
    margin: 0;
    padding: 0 15px;
}

.footer-legal {
    display: block;
    margin-top: 10px;
}

.footer-legal a {
    color: #bbb;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--primary-color);
}

/* Responsive Breakpoints */

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    /* Desktop styles */
    .container {
        max-width: 1200px;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .container {
        max-width: 960px;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .container {
        max-width: 720px;
    }
    
    /* Adjust header/navigation for tablets */
    .nav-menu {
        gap: 15px;
    }
    
    .hero-content {
        padding: 0 20px;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .container {
        max-width: 540px;
    }
    
    /* Mobile menu styles */
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        height: calc(100vh - 80px);
        padding: 20px 0;
        transition: 0.3s;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
        padding: 15px 0;
    }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    .container {
        padding: 0 15px;
    }
    
    /* Adjust typography for mobile */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    
    /* Mobile menu styles */
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        height: calc(100vh - 70px);
        padding: 20px 0;
        transition: 0.3s;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
        padding: 12px 0;
    }
    
    /* Adjust buttons for touch */
    .btn, .cta-button {
        padding: 12px 25px;
        min-width: 160px;
    }
    
    /* Adjust section padding */
    section {
        padding: 50px 0;
    }
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer {
        padding: 60px 0 0;
    }
    
    .footer-content {
        gap: 35px 25px;
        grid-template-columns: repeat(2, 1fr);
        padding-bottom: 20px;
    }
    
    .footer-about,
    .footer-links,
    .footer-contact,
    .footer-social {
        padding: 0 10px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 50px 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
        padding-bottom: 10px;
    }
    
    .footer-about,
    .footer-links,
    .footer-contact,
    .footer-social {
        padding: 0;
        margin-bottom: 30px;
    }
    
    .footer h3,
    .footer h4 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .social-links {
        justify-content: flex-start;
    }
    
    .footer-bottom {
        padding: 20px 15px;
        text-align: center;
    }
    
    .footer-legal {
        display: block;
    }
    
    .footer-legal a {
        display: block;
        margin: 10px 0;
    }
}
}.delay-2 {
    animation-delay: 0.6s;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero h2 {
        font-size: 3.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

/* Mobile Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu Styles */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1000;
    position: relative;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--text-color);
    transition: all 0.3s ease;
    transform-origin: left center;
    position: relative;
}

.hamburger.active {
    position: fixed;
    right: 20px;
    top: 25px;
}

.hamburger.active span {
    background-color: #333;
}

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

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

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

/* Image Section */
.image-section {
    padding: 60px 0;
    background-color: #fff;
}

.image-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.responsive-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-container:hover .responsive-image {
    transform: scale(1.02);
}

        padding: 12px 15px;
        border-radius: 6px;
        transition: all 0.2s ease;
        width: 100%;
    }
    
    .nav-menu a:hover,
    .nav-menu a:focus {
        background-color: rgba(230, 126, 159, 0.1);
        color: var(--primary-color);
        transform: translateX(5px);
    }
    
    .nav-menu a::before {
        display: none;
    }
    
    /* Ensure body doesn't scroll when menu is open */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
        height: 100%;
    }
    
    .hero {
        text-align: center;
        margin-top: 60px;
    }
    
    .hero h2 {
        font-size: 2.8rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 80px 20px 40px;
        background-position: left center;
    }
    
    .hero-content {
        align-items: flex-start;
        text-align: left;
    }
    
    .hero-text {
        margin: 0 0 30px 0;
        text-align: left;
    }
    
    .hero h2, .hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
        margin-bottom: 20px;
    }
    
    .hero p, .hero-description {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
        margin-top: 30px;
    }
    
    .hero-features .feature {
        width: 100%;
        justify-content: center;
        padding: 10px;
    }
    
    .hero .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-contact p {
        justify-content: center;
    }
}
