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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-left {
    flex: 0 0 auto;
}

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

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

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link:hover {
    color: #FF6B35;
}

.nav-link.active {
    color: #ffffff;
}

.nav-link i {
    font-size: 10px;
    opacity: 0.6;
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 280px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 10px;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-header {
    padding: 20px 25px 15px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #0a0a0a;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
}

.dropdown-item {
    display: block;
    padding: 12px 25px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-item:hover {
    color: #FF6B35;
    background: rgba(255, 107, 53, 0.05);
    border-left-color: #FF6B35;
}

.dropdown-item:last-child {
    border-radius: 0 0 4px 4px;
}

.logo a {
    text-decoration: none;
    color: inherit;
}

.logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 1px;
    margin: 0;
    transition: color 0.3s ease;
}

.logo a:hover h1 {
    color: #FF6B35;
}

.logo-highlight {
    color: #FF6B35;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

.search-btn,
.cart-btn,
.menu-toggle {
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

.search-btn:hover,
.cart-btn:hover,
.menu-toggle:hover {
    color: #FF6B35;
}

/* Override menu-toggle styles when used as nav-link */
.nav-link.menu-toggle {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Services burger icon styling */
.nav-link.services-burger {
    color: #FF6B35;
    font-size: 32px;
    padding: 8px;
}

.nav-link.services-burger:hover {
    color: #FF6B35;
    opacity: 0.8;
}

/* Services Panel (Right Side) */
.services-panel-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.services-panel {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    z-index: 9999;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow-y: auto;
    border-left: 1px solid #FF6B35;
}

.services-panel.active {
    right: 0;
}

.services-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.services-panel-logo h2 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: #FF6B35;
    margin: 0;
}

.services-panel-close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 5px;
}

.services-panel-close:hover {
    color: #FF6B35;
}

.services-panel-content {
    padding: 40px;
}

.services-panel-section {
    margin-bottom: 40px;
}

.services-panel-section h3 {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #FF6B35;
    margin-bottom: 15px;
}

.services-panel-section p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.services-list-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-panel-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-panel-item:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: #FF6B35;
    transform: translateX(-5px);
}

.service-panel-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid #FF6B35;
    border-radius: 8px;
    color: #FF6B35;
    font-size: 20px;
}

.service-panel-text h4 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 8px 0;
}

.service-panel-text p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #FF6B35;
    color: #ffffff;
    font-size: 10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* Social Sidebar - REMOVED */

/* Main Content */
.main-content {
    margin-top: 80px;
    min-height: 100vh;
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 40px;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    gap: 80px;
}

.hero-content {
    z-index: 10;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(60px, 8vw, 120px);
    font-weight: 400;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 40px;
}

.headline-carousel {
    position: relative;
    display: block;
    min-height: 3.3em; /* Account for 3 lines of text */
    overflow: hidden;
}

.headline-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    visibility: hidden;
    display: block;
    line-height: 1.1;
    /* Ensure crisp text rendering */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.headline-item.active {
    visibility: visible;
}

/* Ensure responsive behavior */
@media (max-width: 768px) {
    .headline-carousel {
        min-height: 4.4em; /* More space needed on smaller screens */
    }
}

.creative-line {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.arrow-icon {
    flex-shrink: 0;
    margin-right: 10px;
}

/* Hero Images */
.hero-images {
    position: relative;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-composition {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.book-stack {
    position: absolute;
    top: 5%;
    right: 15%;
    width: 240px;
    height: 320px;
    transform: rotate(-8deg);
    z-index: 3;
}

.book-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.vinyl-record {
    position: absolute;
    bottom: 15%;
    left: 20%;
    width: 220px;
    height: 220px;
    z-index: 2;
    transform: rotate(8deg);
}

.vinyl-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.creative-materials {
    position: absolute;
    bottom: 10%;
    right: 10%;
    width: 250px;
    height: 200px;
    transform: rotate(10deg);
    z-index: 1;
}

.materials-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Progress Indicator */
.progress-indicator {
    position: absolute;
    bottom: 40px;
    left: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.progress-number,
.progress-total {
    font-size: 18px;
    font-weight: 300;
    color: #ffffff;
    opacity: 0.8;
}

.progress-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, #ffffff, rgba(255, 255, 255, 0.3));
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-container {
        padding: 15px 30px;
    }
    
    .nav-menu {
        gap: 25px;
    }
    

    
    .hero-section {
        padding: 0 30px;
    }
    
    .hero-container {
        gap: 40px;
    }
}

/* Mobile Burger Menu */
.mobile-burger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 24px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.burger-line {
    width: 24px;
    height: 2px;
    background-color: #ffffff;
    transition: all 0.3s ease;
    transform-origin: center;
}

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

.mobile-burger.active .burger-line:nth-child(2) {
    opacity: 0;
}

.mobile-burger.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation Menu Styles */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.mobile-nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    z-index: 9999;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow-y: auto;
    border-left: 2px solid #FF6B35;
}

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

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 107, 53, 0.05);
}

.mobile-nav-logo h2 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.mobile-nav-close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 5px;
}

.mobile-nav-close:hover {
    color: #FF6B35;
}

.mobile-nav-content {
    padding: 20px 0;
}

.mobile-nav-section {
    margin-bottom: 30px;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 30px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.mobile-nav-link:hover {
    background-color: rgba(255, 107, 53, 0.1);
    border-left-color: #FF6B35;
    color: #FF6B35;
}

.mobile-nav-link i {
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.mobile-nav-link span {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.mobile-nav-section-title {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #FF6B35;
    margin: 0 0 15px 30px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

.mobile-services-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-service-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 30px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.mobile-service-item:hover {
    background-color: rgba(255, 107, 53, 0.05);
    border-left-color: #FF6B35;
}

.mobile-service-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FF6B35 0%, #e55a2b 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    flex-shrink: 0;
}

.mobile-service-text {
    flex: 1;
    min-width: 0;
}

.mobile-service-text h4 {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.mobile-service-text p {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-burger {
        display: flex;
    }
    
    .nav-actions .nav-link {
        display: none;
    }
    

    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-title {
        font-size: clamp(40px, 10vw, 80px);
    }
    
    .hero-images {
        height: 400px;
    }
    
    .book-stack,
    .vinyl-record,
    .creative-materials {
        transform: scale(0.8);
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 15px 20px;
    }
    
    .hero-section {
        padding: 0 20px;
    }
    
    .progress-indicator {
        left: 20px;
        bottom: 20px;
    }
    
    .logo h1 {
        font-size: 24px;
    }
    
    .hero-images {
        height: 300px;
    }
    
    .book-stack,
    .vinyl-record,
    .creative-materials {
        transform: scale(0.6);
    }
}

/* Hover Effects and Animations */
.hero-title {
    animation: fadeInUp 1s ease-out;
}

.image-composition > * {
    animation: fadeInScale 1.2s ease-out;
}

.image-composition > *:nth-child(1) {
    animation-delay: 0.2s;
}

.image-composition > *:nth-child(2) {
    animation-delay: 0.4s;
}

.image-composition > *:nth-child(3) {
    animation-delay: 0.6s;
}

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

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Additional Hover Effects */
.book-image:hover,
.materials-image:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.vinyl-record:hover {
    animation-duration: 2s;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .vinyl-record {
        animation: none;
    }
}

/* About Section */
.about-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 40px;
    background-color: #0a0a0a;
}

.about-container {
    max-width: 1400px;
    width: 100%;
    text-align: center;
}

/* Brand Logos */
.brand-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 120px;
    opacity: 0.6;
    flex-wrap: wrap;
    gap: 40px;
}

.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    position: relative;
}

.logo-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.2;
}

.logo-subtext {
    font-size: 10px;
    font-weight: 300;
    color: #ffffff;
    opacity: 0.7;
    margin-top: 4px;
    letter-spacing: 0.5px;
}

.logo-icon {
    font-size: 24px;
    margin-bottom: 8px;
    opacity: 0.8;
}

/* About Content */
.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.section-label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: lowercase;
    opacity: 0.8;
}

.section-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.3), #ffffff);
}

.about-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(38px, 5vw, 58px);
    font-weight: 400;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 80px;
    letter-spacing: -0.5px;
}

.growth-text {
    color: #FF6B35;
    font-style: italic;
}

.explore-btn {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 16px 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.explore-btn:hover {
    border-color: #FF6B35;
    color: #FF6B35;
    transform: translateY(-2px);
}

.explore-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.5s;
}

.explore-btn:hover:before {
    left: 100%;
}

/* About Section Animations */
.about-section {
    animation: fadeIn 1s ease-out;
}

.brand-logos .logo-item {
    animation: fadeInUp 0.8s ease-out;
}

.brand-logos .logo-item:nth-child(1) { animation-delay: 0.1s; }
.brand-logos .logo-item:nth-child(2) { animation-delay: 0.2s; }
.brand-logos .logo-item:nth-child(3) { animation-delay: 0.3s; }
.brand-logos .logo-item:nth-child(4) { animation-delay: 0.4s; }
.brand-logos .logo-item:nth-child(5) { animation-delay: 0.5s; }

.about-title {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.explore-btn {
    animation: fadeInUp 1s ease-out 0.8s both;
}

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

/* Responsive Design for About Section */
@media (max-width: 1024px) {
    .about-section {
        padding: 100px 30px;
    }
    
    .brand-logos {
        margin-bottom: 80px;
        gap: 30px;
    }
    
    .about-title {
        font-size: clamp(40px, 7vw, 60px);
        margin-bottom: 60px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 80px 20px;
    }
    
    .brand-logos {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 60px;
    }
    
    .logo-item {
        min-height: 60px;
    }
    
    .about-header {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 40px;
    }
    
    .section-line {
        width: 40px;
    }
    
    .about-title {
        font-size: clamp(32px, 8vw, 48px);
        margin-bottom: 50px;
        line-height: 1.3;
    }
    
    .explore-btn {
        padding: 14px 28px;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .brand-logos {
        gap: 20px;
        margin-bottom: 50px;
    }
    
    .logo-text {
        font-size: 12px;
    }
    
    .logo-subtext {
        font-size: 9px;
    }
    
    .about-title {
        margin-bottom: 40px;
    }
}

/* Portfolio/Advantages Section */
.portfolio-section {
    min-height: 100vh;
    padding: 80px 40px;
    background-color: #0a0a0a;
    position: relative;
}

.portfolio-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

/* Top Navigation Buttons */
.portfolio-nav {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.show-more-btn {
    background: none;
    border: none;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.show-more-btn:hover {
    opacity: 1;
    color: #FF6B35;
}

/* Main Portfolio Content */
.portfolio-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 120px;
}

.portfolio-image {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 12px;
}

.watch-image,
.beauty-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-image:hover .watch-image,
.portfolio-image:hover .beauty-image {
    transform: scale(1.05);
}

/* Sparkle Overlay Animation */
.sparkle-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.sparkle {
    position: absolute;
    font-size: 16px;
    animation: sparkleFloat 3s ease-in-out infinite;
}

.sparkle-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.sparkle-2 {
    top: 40%;
    right: 20%;
    animation-delay: 1s;
}

.sparkle-3 {
    bottom: 30%;
    left: 25%;
    animation-delay: 2s;
}

.sparkle-4 {
    top: 60%;
    left: 70%;
    animation-delay: 1.5s;
}

@keyframes sparkleFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-10px) scale(1.2);
        opacity: 1;
    }
}

/* Advantages Content */
.advantages-content {
    text-align: left;
    padding: 0 20px;
}

.advantages-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.advantages-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(48px, 5vw, 64px);
    font-weight: 400;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.advantages-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #ffffff;
    opacity: 0.8;
    margin-bottom: 40px;
    max-width: 300px;
}

.view-more-btn {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.view-more-btn:hover {
    border-color: #FF6B35;
    color: #FF6B35;
    transform: translateY(-2px);
}

.view-more-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.5s;
}

.view-more-btn:hover:before {
    left: 100%;
}

/* Statistics Section */
.statistics-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 60px;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 400;
    color: #FF6B35;
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Portfolio Section Animations */
.portfolio-section {
    animation: fadeIn 1s ease-out;
}

.portfolio-image {
    animation: fadeInScale 1s ease-out;
}

.advantages-content {
    animation: fadeInUp 1s ease-out 0.3s both;
}

.stat-item {
    animation: fadeInUp 0.8s ease-out;
}

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.3s; }
.stat-item:nth-child(4) { animation-delay: 0.4s; }

/* Responsive Design for Portfolio Section */
@media (max-width: 1024px) {
    .portfolio-section {
        padding: 60px 30px;
    }
    
    .portfolio-content {
        gap: 40px;
        margin-bottom: 80px;
    }
    
    .portfolio-image {
        height: 300px;
    }
    
    .advantages-title {
        font-size: clamp(40px, 6vw, 56px);
    }
    
    .statistics-section {
        gap: 30px;
        padding-top: 40px;
    }
}

@media (max-width: 768px) {
    .portfolio-section {
        padding: 50px 20px;
    }
    
    .portfolio-nav {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .portfolio-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
        text-align: center;
    }
    
    .portfolio-image {
        height: 250px;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .advantages-content {
        padding: 0;
    }
    
    .advantages-header {
        justify-content: center;
        margin-bottom: 30px;
    }
    
    .advantages-description {
        max-width: none;
        text-align: center;
    }
    
    .statistics-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .stat-number {
        font-size: clamp(36px, 8vw, 56px);
    }
}

@media (max-width: 480px) {
    .portfolio-content {
        gap: 30px;
    }
    
    .portfolio-image {
        height: 200px;
    }
    
    .advantages-title {
        font-size: clamp(32px, 8vw, 44px);
        margin-bottom: 20px;
    }
    
    .advantages-description {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .view-more-btn {
        padding: 12px 24px;
        font-size: 11px;
    }
    
    .statistics-section {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-item {
        padding: 15px;
    }
}

/* Services Section */
.services-section {
    padding: 80px 40px;
    background-color: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.services-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 100px;
    align-items: flex-start;
}

/* Services Left Content */
.services-left {
    padding-right: 40px;
}

.services-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.services-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(48px, 5vw, 64px);
    font-weight: 400;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.services-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #ffffff;
    opacity: 0.8;
    max-width: 400px;
}

/* Services Right Content */
.services-right {
    padding-left: 40px;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.service-item:last-child {
    border-bottom: none;
}

.service-item:hover {
    transform: translateX(10px);
}

.service-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.service-item:hover .service-icon {
    background: rgba(255, 107, 53, 0.2);
    transform: scale(1.1);
}

.service-content {
    flex: 1;
}

.service-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.3;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.service-description {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #ffffff;
    opacity: 0.7;
    max-width: 280px;
}

/* Services Section Animations */
.services-section {
    animation: fadeIn 1s ease-out;
}

.services-left {
    animation: fadeInUp 1s ease-out 0.2s both;
}

.service-item {
    animation: fadeInUp 0.8s ease-out;
}

.service-item:nth-child(1) { animation-delay: 0.3s; }
.service-item:nth-child(2) { animation-delay: 0.4s; }
.service-item:nth-child(3) { animation-delay: 0.5s; }

/* Responsive Design for Services Section */
@media (max-width: 1024px) {
    .services-section {
        padding: 60px 30px;
    }
    
    .services-content {
        gap: 60px;
    }
    
    .services-left {
        padding-right: 20px;
    }
    
    .services-right {
        padding-left: 20px;
    }
    
    .services-list {
        gap: 40px;
    }
    
    .service-item {
        gap: 20px;
        padding: 20px 0;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 50px 20px;
    }
    
    .services-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .services-left {
        padding-right: 0;
    }
    
    .services-right {
        padding-left: 0;
    }
    
    .services-header {
        justify-content: center;
        margin-bottom: 30px;
    }
    
    .services-description {
        max-width: none;
        text-align: center;
    }
    
    .services-list {
        gap: 30px;
    }
    
    .service-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 25px 20px;
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.01);
    }
    
    .service-item:hover {
        transform: translateY(-5px);
    }
    
    .service-icon {
        margin: 0 auto;
    }
    
    .service-description {
        max-width: none;
    }
}

@media (max-width: 480px) {
    .services-title {
        font-size: clamp(32px, 8vw, 48px);
        margin-bottom: 20px;
    }
    
    .services-description {
        font-size: 14px;
    }
    
    .service-title {
        font-size: 20px;
    }
    
    .service-description {
        font-size: 13px;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
    }
    
    .service-icon svg {
        width: 30px;
        height: 30px;
    }
}

/* Gallery Section */
.gallery-section {
    padding: 80px 40px;
    background-color: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

/* Gallery Header */
.gallery-header {
    margin-bottom: 80px;
}

.gallery-title-section {
    max-width: 600px;
}

.gallery-label-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.gallery-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(48px, 5vw, 64px);
    font-weight: 400;
    line-height: 1.1;
    color: #ffffff;
    letter-spacing: -0.5px;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    grid-auto-rows: auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
}

.gallery-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 12px;
    position: relative;
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .portfolio-img {
    transform: scale(1.1);
}

/* Gallery Content */
.gallery-content {
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gallery-number {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    opacity: 0.6;
    letter-spacing: 1px;
}

.gallery-item-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.2;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.3px;
}

.gallery-item-description {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #ffffff;
    opacity: 0.7;
    margin: 0;
    max-width: 280px;
}

.gallery-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.gallery-link:hover {
    color: #FF6B35;
    transform: translateX(5px);
}

.gallery-link svg {
    transition: transform 0.3s ease;
}

.gallery-link:hover svg {
    transform: translateX(3px);
}

/* Gallery Section Animations */
.gallery-section {
    animation: fadeIn 1s ease-out;
}

.gallery-header {
    animation: fadeInUp 1s ease-out 0.2s both;
}

.gallery-item {
    animation: fadeInUp 0.8s ease-out;
}

.gallery-item:nth-child(1) { animation-delay: 0.3s; }
.gallery-item:nth-child(2) { animation-delay: 0.4s; }
.gallery-item:nth-child(3) { animation-delay: 0.5s; }
.gallery-item:nth-child(4) { animation-delay: 0.6s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-item:nth-child(6) { animation-delay: 0.6s; }

/* Responsive Design for Gallery Section */
@media (max-width: 1024px) {
    .gallery-section {
        padding: 60px 30px;
    }
    
    .gallery-header {
        margin-bottom: 60px;
    }
    
    .gallery-grid {
        gap: 40px;
    }
    
    .gallery-image {
        height: 280px;
    }
    
    .gallery-content {
        padding: 30px 0;
    }
    
    .gallery-item-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 50px 20px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .gallery-header {
        margin-bottom: 40px;
        text-align: center;
    }
    
    .gallery-label-wrapper {
        justify-content: center;
        margin-bottom: 30px;
    }
    
    .gallery-image {
        height: 250px;
    }
    
    .gallery-content {
        text-align: center;
        padding: 25px 0;
    }
    
    .gallery-item-description {
        max-width: none;
    }
    
    .gallery-link {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .gallery-image {
        height: 200px;
    }
    
    .gallery-item-title {
        font-size: 24px;
    }
    
    .gallery-item-description {
        font-size: 13px;
    }
    
    .gallery-content {
        padding: 20px 0;
        gap: 15px;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 40px;
    background-color: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

/* Testimonials Header */
.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 80px;
}

.testimonials-left {
    flex: 1;
}

.testimonials-label-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.testimonials-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(48px, 5vw, 64px);
    font-weight: 400;
    line-height: 1.1;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.client-feedback-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    opacity: 0.7;
}

/* Testimonial Content */
.testimonial-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
}

.testimonial-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.quote-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #ffffff;
    opacity: 0.8;
    margin: 0 0 30px 0;
    max-width: 500px;
}

.rating {
    display: flex;
    gap: 4px;
}

.star {
    color: #FF6B35;
    font-size: 18px;
}

.client-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.client-name {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 0 8px 0;
}

.client-position {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
    opacity: 0.6;
    margin: 0;
}

.client-avatars {
    display: flex;
    gap: 8px;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

/* Testimonial Navigation */
.testimonial-navigation {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.nav-dots {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #FF6B35;
}

/* Awards Section */
.awards-section {
    padding: 80px 40px;
    background-color: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.awards-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

/* Awards Header */
.awards-header {
    margin-bottom: 80px;
}

.awards-label-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.awards-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(48px, 5vw, 64px);
    font-weight: 400;
    line-height: 1.1;
    color: #ffffff;
    letter-spacing: -0.5px;
}

/* Awards Grid */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.award-item {
    text-align: center;
    padding: 40px 20px;
    transition: transform 0.3s ease;
}

.award-item:hover {
    transform: translateY(-10px);
}

.award-icon {
    margin: 0 auto 30px auto;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.award-number {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    opacity: 0.6;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.award-years {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    opacity: 0.7;
    margin-bottom: 20px;
}

.award-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.3;
    color: #ffffff;
    margin: 0 0 15px 0;
    letter-spacing: -0.3px;
}

.award-organization {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
    opacity: 0.6;
    margin: 0;
}

/* Awards Navigation */
.awards-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-line {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 40px;
    position: relative;
}

.progress-line {
    width: 33%;
    height: 1px;
    background: #FF6B35;
    transition: width 0.3s ease;
}

.nav-arrows {
    display: flex;
    gap: 20px;
}

.nav-arrow {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: none;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-arrow:hover {
    border-color: #FF6B35;
    color: #FF6B35;
    transform: scale(1.1);
}

/* Testimonials and Awards Animations */
.testimonials-section,
.awards-section {
    animation: fadeIn 1s ease-out;
}

.testimonials-header {
    animation: fadeInUp 1s ease-out 0.2s both;
}

.testimonial-main {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.award-item {
    animation: fadeInUp 0.8s ease-out;
}

.award-item:nth-child(1) { animation-delay: 0.3s; }
.award-item:nth-child(2) { animation-delay: 0.4s; }
.award-item:nth-child(3) { animation-delay: 0.5s; }
.award-item:nth-child(4) { animation-delay: 0.6s; }
.award-item:nth-child(5) { animation-delay: 0.7s; }

/* Responsive Design for Testimonials and Awards */
@media (max-width: 1024px) {
    .testimonials-section,
    .awards-section {
        padding: 60px 30px;
    }
    
    .testimonials-header {
        margin-bottom: 60px;
    }
    
    .testimonial-content {
        gap: 40px;
    }
    
    .testimonial-main {
        gap: 60px;
    }
    
    .awards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        margin-bottom: 60px;
    }
}

@media (max-width: 768px) {
    .testimonials-section,
    .awards-section {
        padding: 50px 20px;
    }
    
    .testimonials-header {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        margin-bottom: 50px;
    }
    
    .testimonials-label-wrapper {
        justify-content: center;
    }
    
    .testimonial-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .testimonial-main {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .client-info {
        align-items: center;
    }
    
    .testimonial-navigation {
        flex-direction: row;
        justify-content: center;
    }
    
    .nav-dots {
        flex-direction: row;
    }
    
    .awards-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .awards-navigation {
        flex-direction: column;
        gap: 30px;
    }
    
    .nav-line {
        margin: 0;
        width: 200px;
    }
}

@media (max-width: 480px) {
    .quote-text {
        font-size: 14px;
    }
    
    .client-avatars {
        justify-content: center;
    }
    
    .avatar {
        width: 40px;
        height: 40px;
    }
    
    .award-item {
        padding: 30px 15px;
    }
    
    .award-title {
        font-size: 20px;
    }
}

/* Team Section */
.team-section {
    padding: 80px 40px;
    background-color: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.team-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

/* Team Header */
.team-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 80px;
}

.team-left {
    flex: 1;
}

.team-label-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.team-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(48px, 5vw, 64px);
    font-weight: 400;
    line-height: 1.1;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.view-more-details {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: none;
    opacity: 0.7;
    transition: all 0.3s ease;
    position: relative;
}

.view-more-details:hover {
    opacity: 1;
    color: #FF6B35;
}

.view-more-details::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #FF6B35;
    transition: width 0.3s ease;
}

.view-more-details:hover::after {
    width: 100%;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: start;
}

.team-member {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
}

.member-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.team-member:hover .member-photo {
    transform: scale(1.05);
}

/* Team Member Overlay Effect */
.member-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg, 
        rgba(0, 0, 0, 0) 0%, 
        rgba(0, 0, 0, 0.3) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-member:hover .member-image::after {
    opacity: 1;
}

/* Team Section Animations */
.team-section {
    animation: fadeIn 1s ease-out;
}

.team-header {
    animation: fadeInUp 1s ease-out 0.2s both;
}

.team-member {
    animation: fadeInUp 0.8s ease-out;
}

.team-member:nth-child(1) { animation-delay: 0.3s; }
.team-member:nth-child(2) { animation-delay: 0.4s; }
.team-member:nth-child(3) { animation-delay: 0.5s; }

/* Core Values Card Styles */
.core-value-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 40px 30px;
    height: 450px;
    transition: all 0.3s ease;
}

.core-value-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 107, 53, 0.2);
    transform: translateY(-5px);
}

.core-value-icon {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

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

.core-value-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.core-value-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 400;
    color: #ffffff;
    margin: 0 0 20px 0;
    letter-spacing: -0.3px;
}

.core-value-description {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    max-width: 280px;
}

/* Responsive Design for Team Section */
@media (max-width: 1024px) {
    .team-section {
        padding: 60px 30px;
    }
    
    .team-header {
        margin-bottom: 60px;
    }
    
    .team-grid {
        gap: 25px;
    }
    
    .member-image {
        height: 450px;
    }
    
    .core-value-card {
        height: 400px;
        padding: 35px 25px;
    }
    
    .core-value-title {
        font-size: 24px;
    }
    
    .core-value-description {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .team-section {
        padding: 50px 20px;
    }
    
    .team-header {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        margin-bottom: 50px;
    }
    
    .team-label-wrapper {
        justify-content: center;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .member-image {
        height: 500px;
    }
    
    .core-value-card {
        height: 350px;
        padding: 30px 20px;
    }
    
    .core-value-title {
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .core-value-description {
        font-size: 12px;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .team-grid {
        max-width: 100%;
    }
    
    .member-image {
        height: 400px;
    }
    
    .core-value-card {
        height: 320px;
        padding: 25px 15px;
    }
    
    .core-value-icon svg {
        width: 50px;
        height: 50px;
    }
    
    .core-value-title {
        font-size: 20px;
    }
    
    .core-value-description {
        font-size: 11px;
    }
}

/* Contact/Footer Section */
.contact-section {
    padding: 100px 40px 60px;
    background-color: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
}

/* Contact Header */
.contact-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 100px;
}

.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(48px, 5vw, 64px);
    font-weight: 400;
    line-height: 1.1;
    color: #ffffff;
    letter-spacing: -0.5px;
    margin: 0;
}

.send-message-btn {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: none;
    opacity: 0.7;
    transition: all 0.3s ease;
    position: relative;
}

.send-message-btn:hover {
    opacity: 1;
    color: #FF6B35;
}

.send-message-btn::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #FF6B35;
    transition: width 0.3s ease;
}

.send-message-btn:hover::after {
    width: 100%;
}

/* Company Name */
.company-name {
    margin-bottom: 80px;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 400;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.3px;
}

.footer-logo-highlight {
    color: #FF6B35;
}

/* Contact Info Grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
    margin-bottom: 100px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    opacity: 0.7;
}

.contact-details {
    text-align: center;
}

.contact-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
    opacity: 0.6;
    margin: 0 0 8px 0;
}

.contact-value {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
}

/* Footer Navigation */
.footer-nav {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-nav-link {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: none;
    opacity: 0.7;
    transition: all 0.3s ease;
    position: relative;
}

.footer-nav-link:hover {
    opacity: 1;
    color: #FF6B35;
}

.footer-nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #FF6B35;
    transition: width 0.3s ease;
}

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

/* Social Media */
.social-media {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
}

.social-link {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    border-color: #FF6B35;
    color: #FF6B35;
    transform: translateY(-2px);
}

/* Copyright */
.copyright {
    margin-bottom: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    opacity: 0.5;
    margin: 0;
    letter-spacing: 0.5px;
}

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

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

.slide-menu {
    position: fixed;
    top: 0;
    left: -400px;
    width: 400px;
    height: 100vh;
    background: #0a0a0a;
    z-index: 999;
    transition: left 0.3s ease;
    overflow-y: auto;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.slide-menu.active {
    left: 0;
}

.slide-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.slide-menu-logo h2 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
}

.slide-menu-close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
}

.slide-menu-close:hover {
    color: #FF6B35;
}

.slide-menu-content {
    padding: 30px;
}

.slide-menu-section {
    margin-bottom: 40px;
}

.slide-menu-section h3 {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 0 20px 0;
    border-bottom: 2px solid #FF6B35;
    padding-bottom: 10px;
}

.slide-menu-section p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.slide-menu-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.slide-form-input,
.slide-form-textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 12px 15px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #ffffff;
    transition: border-color 0.3s ease;
}

.slide-form-input::placeholder,
.slide-form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.slide-form-input:focus,
.slide-form-textarea:focus {
    outline: none;
    border-color: #FF6B35;
}

.slide-form-textarea {
    min-height: 80px;
    resize: vertical;
}

.slide-form-submit {
    background: #FF6B35;
    border: none;
    border-radius: 4px;
    padding: 12px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
    cursor: pointer;
    transition: background 0.3s ease;
}

.slide-form-submit:hover {
    background: #e55a2b;
}

.slide-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.slide-contact-item i {
    color: #FF6B35;
    margin-top: 2px;
    width: 16px;
}

/* Responsive Design for Slide Menu */
@media (max-width: 480px) {
    .slide-menu {
        width: 90%;
        left: -90%;
    }
    
    .slide-menu-header {
        padding: 15px 20px;
    }
    
    .slide-menu-content {
        padding: 20px;
    }
}

/* Back to Top */
.back-to-top {
    margin-bottom: 20px;
}

.back-to-top-link {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: none;
    opacity: 0.7;
    transition: all 0.3s ease;
    position: relative;
}

.back-to-top-link:hover {
    opacity: 1;
    color: #FF6B35;
}

.back-to-top-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #FF6B35;
    transition: width 0.3s ease;
}

.back-to-top-link:hover::after {
    width: 100%;
}

/* Contact Section Animations */
.contact-section {
    animation: fadeIn 1s ease-out;
}

.contact-header {
    animation: fadeInUp 1s ease-out 0.2s both;
}

.brand-name {
    animation: fadeInUp 1s ease-out 0.3s both;
}

.contact-item {
    animation: fadeInUp 0.8s ease-out;
}

.contact-item:nth-child(1) { animation-delay: 0.4s; }
.contact-item:nth-child(2) { animation-delay: 0.5s; }
.contact-item:nth-child(3) { animation-delay: 0.6s; }

.footer-nav {
    animation: fadeInUp 1s ease-out 0.7s both;
}

.social-media {
    animation: fadeInUp 1s ease-out 0.8s both;
}

/* Responsive Design for Contact Section */
@media (max-width: 1024px) {
    .contact-section {
        padding: 80px 30px 50px;
    }
    
    .contact-header {
        margin-bottom: 80px;
    }
    
    .company-name {
        margin-bottom: 60px;
    }
    
    .contact-info-grid {
        gap: 60px;
        margin-bottom: 80px;
    }
    
    .footer-nav {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 20px 40px;
    }
    
    .contact-header {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        margin-bottom: 60px;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        margin-bottom: 60px;
    }
    
    .footer-nav {
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
    }
    
    .social-media {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .contact-info-grid {
        gap: 40px;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 20px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
}

/* Management Consultancy Hero Section */
.consultancy-hero-section {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 20px;
    padding: 5px 40px 40px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    overflow: hidden;
}

.consultancy-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.consultancy-hero-content {
    z-index: 2;
}

.consultancy-breadcrumb {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.breadcrumb-separator {
    margin: 0 10px;
    color: #FF6B35;
}

.breadcrumb-item.active {
    color: #FF6B35;
}

.consultancy-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 600;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.title-highlight {
    color: #FF6B35;
    font-style: italic;
}

.consultancy-hero-description {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 500px;
}

.consultancy-hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.consultancy-hero-stats .stat-item {
    text-align: center;
}

.consultancy-hero-stats .stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 600;
    color: #FF6B35;
    line-height: 1;
    margin-bottom: 8px;
}

.consultancy-hero-stats .stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.consultancy-hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.primary-btn, .secondary-btn {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 16px 32px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    border-radius: 4px;
}

.primary-btn {
    background-color: #FF6B35;
    color: #ffffff;
}

.primary-btn:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
}

.secondary-btn {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.secondary-btn:hover {
    border-color: #FF6B35;
    color: #FF6B35;
    transform: translateY(-2px);
}

.consultancy-hero-visual {
    position: relative;
    z-index: 1;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 500px;
}

.hero-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.floating-cards {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 200px;
    animation: float 6s ease-in-out infinite;
}

.floating-card.card-1 {
    top: 10%;
    right: -50px;
    animation-delay: 0s;
}

.floating-card.card-2 {
    bottom: 40%;
    left: -50px;
    animation-delay: 2s;
}

.floating-card.card-3 {
    bottom: 10%;
    right: -30px;
    animation-delay: 4s;
}

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

.card-icon {
    width: 40px;
    height: 40px;
    background-color: #FF6B35;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    flex-shrink: 0;
}

.card-content h4 {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #0a0a0a;
    margin: 0 0 4px 0;
}

.card-content p {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #666666;
    margin: 0;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 3;
}

.scroll-text {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-arrow {
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* Responsive Design for Consultancy Hero */
@media (max-width: 1200px) {
    .consultancy-hero-container {
        gap: 60px;
    }
    
    .floating-card.card-1,
    .floating-card.card-2,
    .floating-card.card-3 {
        display: none;
    }
}

@media (max-width: 768px) {
    .consultancy-hero-section {
        margin-top: 15px;
        min-height: calc(100vh - 70px);
        padding: 5px 30px 40px;
    }
    
    .consultancy-hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .consultancy-hero-stats {
        justify-content: center;
        gap: 30px;
    }
    
    .hero-image-container {
        height: 300px;
    }
    
    .consultancy-hero-actions {
        justify-content: center;
    }
}

/* Mobile Responsive Styles for Consultancy Pages */
@media (max-width: 768px) {
    .consultancy-hero-section {
        padding: 100px 20px 40px;
        min-height: calc(100vh - 60px);
    }
    
    .consultancy-hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .consultancy-hero-content {
        order: 1;
    }
    
    .consultancy-hero-visual {
        order: 2;
    }
    
    .consultancy-hero-title {
        font-size: clamp(36px, 8vw, 48px);
        margin-bottom: 20px;
    }
    
    .consultancy-hero-description {
        max-width: 100%;
        margin-bottom: 30px;
        font-size: 16px;
    }
    
    .consultancy-hero-stats {
        justify-content: center;
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .consultancy-hero-actions {
        justify-content: center;
        gap: 16px;
    }
    
    .hero-image-container {
        height: 350px;
    }
    
    .floating-cards {
        transform: scale(0.8);
    }
    
    /* Services Overview Mobile */
    .services-overview-section {
        padding: 60px 20px;
    }
    
    .services-overview-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-main-content {
        gap: 30px;
    }
    
    .services-image-container {
        height: 250px;
    }
    
    .services-section-title {
        font-size: clamp(28px, 6vw, 36px);
        margin-bottom: 20px;
    }
    
    .services-description-enhanced {
        text-align: left;
    }
    
    .services-description-main,
    .services-description-secondary {
        font-size: 15px;
    }
    
    .services-cta {
        justify-content: center;
        gap: 12px;
    }
    
    /* Services Sidebar Mobile */
    .services-sidebar {
        gap: 8px;
    }
    
    .service-item-enhanced {
        padding: 16px;
        gap: 14px;
    }
    
    .service-item-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    
    .service-item-title {
        font-size: 16px;
    }
    
    .service-item-description {
        font-size: 13px;
    }
    
    .expanded-content-inner {
        flex-direction: column;
        gap: 16px;
    }
    
    .expanded-image {
        flex: 0 0 auto;
        width: 100%;
        height: 150px;
    }
    
    .expanded-text p {
        font-size: 14px;
    }
    
    .expanded-cta-btn {
        padding: 12px 20px;
        font-size: 12px;
        align-self: center;
    }
    
    /* Why Choose Mobile */
    .why-choose-section {
        padding: 50px 20px;
    }
    
    .why-choose-container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .why-choose-image {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .why-choose-img {
        height: 200px;
    }
    
    .why-choose-title {
        font-size: 24px;
    }
    
    .why-choose-description {
        font-size: 15px;
    }
    
    .why-choose-list {
        gap: 16px;
    }
    
    .check-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .consultancy-hero-section {
        padding: 90px 15px 30px;
    }
    
    .consultancy-hero-stats {
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .consultancy-hero-stats .stat-number {
        font-size: 24px;
    }
    
    .consultancy-hero-stats .stat-label {
        font-size: 12px;
    }
    
    .primary-btn, .secondary-btn {
        padding: 14px 24px;
        font-size: 12px;
        width: 100%;
        max-width: 200px;
    }
    
    .consultancy-hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .services-overview-section {
        padding: 50px 15px;
    }
    
    .services-sidebar {
        gap: 6px;
    }
    
    .service-item-enhanced {
        padding: 14px;
        gap: 12px;
        margin-bottom: 6px;
    }
    
    .service-item-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .service-item-title {
        font-size: 15px;
    }
    
    .service-item-description {
        font-size: 12px;
    }
    
    .expanded-text p {
        font-size: 13px;
    }
    
    .expanded-cta-btn {
        padding: 10px 16px;
        font-size: 11px;
    }
    
    .hero-image-container {
        height: 280px;
    }
    
    .floating-cards {
        transform: scale(0.7);
    }
    
    .floating-card {
        padding: 12px;
    }
    
    .card-content h4 {
        font-size: 12px;
    }
    
    .card-content p {
        font-size: 10px;
    }
}

/* Services Overview Section */
.services-overview-section {
    padding: 80px 40px;
    background-color: #0a0a0a;
}

.services-overview-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.services-main-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.services-image-container {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
}

.services-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-icon-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon {
    color: #FF6B35;
    font-size: 24px;
}

.services-content-text {
    color: #ffffff;
}

.services-section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 600;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.services-description-enhanced {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.services-description-main {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

.services-description-secondary {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

.services-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 20px 0;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(255, 107, 53, 0.05);
    border-color: rgba(255, 107, 53, 0.2);
}

.highlight-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #FF6B35 0%, #e55a2b 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    flex-shrink: 0;
}

.highlight-content {
    flex: 1;
}

.highlight-title {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.highlight-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.4;
}

.services-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.services-primary-btn, .services-secondary-btn {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 14px 24px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    border-radius: 6px;
}

.services-primary-btn {
    background-color: #FF6B35;
    color: #ffffff;
}

.services-primary-btn:hover {
    background-color: #e55a2b;
    transform: translateY(-1px);
}

.services-secondary-btn {
    background-color: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.services-secondary-btn:hover {
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
    transform: translateY(-1px);
}

.services-sidebar {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Expandable Service Cards */
.service-card-expandable {
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card-expandable .service-item-enhanced {
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-card-expandable.expanded .service-item-enhanced {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.service-expanded-content {
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height 0.4s ease, padding 0.3s ease;
    background-color: rgba(26, 26, 26, 0.95);
    border-left: 2px solid #FF6B35;
}

.service-card-expandable.expanded .service-expanded-content {
    max-height: 400px;
    padding: 24px;
}

/* Service Item Expanded - Default Hidden State */
.service-item-expanded {
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height 0.4s ease, padding 0.3s ease;
    background-color: rgba(26, 26, 26, 0.95);
    border-left: 2px solid #FF6B35;
}

.service-card-expandable.expanded .service-item-expanded {
    max-height: 300px;
    padding: 24px;
}

.expanded-content {
    opacity: 0;
    transition: opacity 0.3s ease 0.1s;
}

.service-card-expandable.expanded .expanded-content {
    opacity: 1;
}

.expanded-content h4 {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
}

.expanded-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.expanded-content li {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.expanded-content li:before {
    content: "✓";
    color: #FF6B35;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Team Stats Styling */
.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-row:last-child {
    border-bottom: none;
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    flex: 1;
}

.stat-value {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #FF6B35;
}

.expanded-content-inner {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.expanded-image {
    flex: 0 0 140px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
}

.service-detail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-detail-image:hover {
    transform: scale(1.05);
}

.expanded-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.expanded-text p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.expanded-cta-btn {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 20px;
    background-color: #FF6B35;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.expanded-cta-btn:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.service-card-expandable.expanded .service-item-arrow {
    transform: rotate(90deg);
}

.service-item-enhanced {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    border-radius: 12px;
    margin-bottom: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.service-item-enhanced:last-child {
    margin-bottom: 0;
}

.service-item-enhanced:hover {
    background: rgba(255, 107, 53, 0.05);
    border-color: rgba(255, 107, 53, 0.2);
}

.service-item-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #FF6B35 0%, #e55a2b 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    flex-shrink: 0;
}

.service-item-content {
    flex: 1;
    min-width: 0;
}

/* Services Page Styles */
.services-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.services-hero .hero-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.services-hero .hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.services-hero .hero-text {
    flex: 1;
    max-width: 600px;
}

.services-hero .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(60px, 8vw, 120px);
    font-weight: 400;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 40px;
}

.services-hero .hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Dynamic Services Hero Visual */
.services-hero-visual {
    flex: 2;
    position: relative;
    height: 500px;
    min-width: 500px;
}

.hero-main-container {
    position: relative;
    z-index: 2;
}

.hero-main-img {
    width: 450px;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.hero-main-img:hover {
    transform: scale(1.02);
}

.hero-secondary-container {
    position: absolute;
    top: 200px;
    right: 0;
    z-index: 1;
}

.hero-secondary-img {
    width: 200px;
    height: 250px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    transform: rotate(8deg);
    transition: transform 0.3s ease;
}

.hero-secondary-img:hover {
    transform: rotate(5deg) scale(1.05);
}

/* Floating Statistics Cards */
.floating-stat-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
    animation: floatAnimation 3s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.floating-stat-card:hover {
    transform: translateY(-5px);
}

.stat-card-1 {
    top: -20px;
    left: 300px;
    animation-delay: 0s;
}

.stat-card-2 {
    top: 120px;
    left: -30px;
    animation-delay: 1s;
}

.stat-card-3 {
    bottom: 50px;
    left: 200px;
    animation-delay: 2s;
}

.stat-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FF6B35, #e55a2b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

.stat-content {
    text-align: left;
}



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

.services-section {
    padding: 80px 40px;
    background: #0a0a0a;
}

.services-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.1);
}

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-img {
    transform: scale(1.05);
}

.service-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-name {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.3;
}

.service-summary {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 32px;
    flex-grow: 1;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FF6B35;
    color: #ffffff;
    padding: 14px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.service-btn:hover {
    background: #e55a2b;
    transform: translateX(4px);
}

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

.service-btn:hover i {
    transform: translateX(4px);
}

/* Services Page Mobile Responsive */
@media (max-width: 768px) {
    .services-hero .hero-container {
        padding: 0 20px;
    }
    
    .services-hero .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .services-hero .hero-text {
        order: 1;
    }
    
    .services-hero-visual {
        order: 2;
        margin-top: 40px;
        height: 400px;
        min-width: 0;
        transform: scale(0.9);
    }
    
    .hero-main-img {
        width: 350px;
        height: 240px;
    }
    
    .hero-secondary-img {
        width: 150px;
        height: 200px;
    }
    
    .floating-stat-card {
        padding: 12px 16px;
        transform: scale(0.9);
    }
    
    .stat-card-1 {
        top: -10px;
        left: 200px;
    }
    
    .stat-card-2 {
        top: 100px;
        left: -20px;
    }
    
    .stat-card-3 {
        bottom: 40px;
        left: 150px;
    }
    
    .services-section {
        padding: 60px 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-image {
        height: 200px;
    }
    
    .service-content {
        padding: 24px;
    }
    
    .service-name {
        font-size: 20px;
    }
    
    .service-summary {
        font-size: 15px;
        margin-bottom: 24px;
    }
}

@media (max-width: 480px) {
    .services-hero {
        min-height: 80vh;
    }
    
    .services-hero .hero-content {
        gap: 40px;
    }
    
    .services-hero-visual {
        height: 350px;
        transform: scale(0.8);
    }
    
    .hero-main-img {
        width: 300px;
        height: 200px;
    }
    
    .hero-secondary-img {
        width: 120px;
        height: 160px;
    }
    
    .floating-stat-card {
        padding: 10px 12px;
        transform: scale(0.8);
    }
    
    .stat-number {
        font-size: 20px;
    }
    
    .stat-label {
        font-size: 10px;
    }
    
    .stat-card-1 {
        top: 0px;
        left: 150px;
    }
    
    .stat-card-2 {
        top: 80px;
        left: -15px;
    }
    
    .stat-card-3 {
        bottom: 30px;
        left: 120px;
    }
    
    .services-grid {
        gap: 24px;
    }
    
    .service-image {
        height: 180px;
    }
    
    .service-content {
        padding: 20px;
    }
    
    .service-name {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .service-summary {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .service-btn {
        padding: 12px 20px;
        font-size: 13px;
    }
}

.service-item-title {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 6px 0;
    line-height: 1.3;
}

.service-item-description {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.4;
}

.service-item-arrow {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: auto;
}

.service-item-enhanced:hover .service-item-arrow {
    transform: translateX(3px);
    color: #FF6B35;
}

.contact-card {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.3;
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #0a0a0a;
    font-size: 24px;
}

.contact-card-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.contact-card-phone {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #FF6B35;
    margin: 0;
}

.consultancy-sidebar-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background-color: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-consulting-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.consultancy-sidebar-image:hover .sidebar-consulting-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 30px 20px 20px;
    transition: all 0.3s ease;
}

.overlay-content {
    color: #ffffff;
}

.overlay-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.overlay-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.4;
}

/* Why Choose Section */
.why-choose-section {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.why-choose-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
}

.why-choose-image {
    border-radius: 12px;
    overflow: hidden;
}

.why-choose-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.why-choose-content {
    color: #ffffff;
}

.why-choose-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.why-choose-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 30px;
}

.why-choose-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.why-choose-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.check-icon {
    width: 24px;
    height: 24px;
    background-color: #FF6B35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 12px;
    flex-shrink: 0;
}

.check-text {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive Design for Services Overview */
@media (max-width: 1200px) {
    .services-overview-container {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .services-overview-section {
        padding: 60px 30px;
    }
    
    .services-overview-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-image-container {
        height: 300px;
    }
    
    .services-description-enhanced {
        gap: 20px;
    }
    
    .services-highlights {
        margin: 15px 0;
        gap: 16px;
    }
    
    .highlight-item {
        padding: 16px;
    }
    
    .highlight-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .services-cta {
        flex-direction: column;
        gap: 12px;
    }
    
    .services-primary-btn, .services-secondary-btn {
        width: 100%;
        text-align: center;
    }
    
    .why-choose-section {
        margin-top: 40px;
        padding-top: 40px;
    }
    
    .why-choose-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .why-choose-img {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .expanded-content-inner {
        flex-direction: column;
        gap: 16px;
    }
    
    .expanded-image {
        flex: none;
        width: 100%;
        height: 120px;
    }
    
    .service-card-expandable.expanded .service-expanded-content {
        max-height: 500px;
        padding: 20px;
    }
    
    .service-expanded-content {
        padding: 0;
    }
}

@media (max-width: 480px) {
    .services-sidebar {
        gap: 6px;
    }
    
    .expanded-text p {
        font-size: 13px;
    }
    
    .expanded-cta-btn {
        padding: 10px 16px;
        font-size: 11px;
    }
    
    .contact-card {
        padding: 20px;
    }
    
    .service-item-enhanced {
        padding: 14px;
        gap: 12px;
        margin-bottom: 6px;
    }
    
    .service-item-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .service-item-title {
        font-size: 15px;
    }
    
    .service-item-description {
        font-size: 12px;
    }
}

/* Focus states for accessibility */
.nav-link:focus,
.search-btn:focus,
.cart-btn:focus,
.menu-toggle:focus,
.explore-btn:focus,
.show-more-btn:focus,
.view-more-btn:focus,
.gallery-link:focus,
.nav-arrow:focus,
.dot:focus,
.view-more-details:focus,
.send-message-btn:focus,
.footer-nav-link:focus,
.social-link:focus,
.back-to-top-link:focus,
.primary-btn:focus,
.secondary-btn:focus {
    outline: 2px solid #FF6B35;
    outline-offset: 2px;
}

/* Terms of Service Styles */
.terms-section {
    padding: 120px 40px 80px;
    background-color: #0a0a0a;
    min-height: calc(100vh - 200px);
}

.terms-container {
    max-width: 800px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
}

.breadcrumb-link {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: #FF6B35;
}

.breadcrumb-separator {
    margin: 0 10px;
    color: #666666;
}

.breadcrumb-current {
    color: #FF6B35;
}

.terms-header {
    text-align: center;
    margin-bottom: 60px;
}

.terms-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.2;
}

.terms-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #cccccc;
    margin: 0;
}

.terms-content {
    margin-bottom: 60px;
}

.terms-section-item {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.terms-section-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.terms-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: #FF6B35;
    margin-bottom: 16px;
    line-height: 1.3;
}

.terms-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 16px;
}

.terms-list {
    margin: 16px 0;
    padding-left: 20px;
}

.terms-list li {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 8px;
}

.contact-details {
    background: rgba(255, 107, 53, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 8px;
    padding: 20px;
    margin-top: 16px;
}

.contact-details p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #cccccc;
    margin: 8px 0;
}

.contact-details strong {
    color: #FF6B35;
}

.terms-cta {
    text-align: center;
    background: rgba(255, 107, 53, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 12px;
    padding: 40px 30px;
}

.terms-cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
}

.terms-cta-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 24px;
}

.terms-cta-btn {
    background: #FF6B35;
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.terms-cta-btn:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

/* Responsive Terms of Service */
@media (max-width: 768px) {
    .terms-section {
        padding: 100px 20px 60px;
    }
    
    .terms-header {
        margin-bottom: 40px;
    }
    
    .terms-section-title {
        font-size: 20px;
    }
    
    .terms-text,
    .terms-list li {
        font-size: 15px;
    }
    
    .terms-cta {
        padding: 30px 20px;
    }
    
    .terms-cta-title {
        font-size: 24px;
    }
}
