/* FSA Enterprises - Custom Styles */
:root {
    --gold: #D4AF37;
    --gold-light: #E5C158;
    --gold-dark: #B8941E;
    --black: #000000;
    --white: #FFFFFF;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    
    /* Theme variables */
    --bg-primary: #000000;
    --bg-secondary: #0a0a0a;
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.8);
    --text-muted: rgba(255, 255, 255, 0.7);
    --border-color: rgba(212, 175, 55, 0.2);
    --card-bg: rgba(255, 255, 255, 0.02);
}

body.light-theme {
    --bg-primary: #FFFFFF;
    --bg-secondary: #F9FAFB;
    --text-primary: #000000;
    --text-secondary: rgba(0, 0, 0, 0.8);
    --text-muted: rgba(0, 0, 0, 0.7);
    --border-color: rgba(212, 175, 55, 0.3);
    --card-bg: rgba(0, 0, 0, 0.02);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Typography */
.font-display {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.text-gold {
    color: var(--gold);
}

.bg-gold {
    background-color: var(--gold);
}

.border-gold {
    border-color: var(--gold);
}

/* Utility Classes */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 1024px) {
    .container {
        padding: 0 3rem;
    }
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    height: 80px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

body.light-theme header {
    background-color: rgba(255, 255, 255, 0.95);
    
}

nav {
    height: 100%;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    width: 100%;
}

@media (min-width: 480px) {
    nav {
        padding: 0 1.25rem;
    }
}

@media (min-width: 640px) {
    nav {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    nav {
        padding: 0 3rem;
    }
}

nav .container {
    position: relative;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    gap: 1rem;
}

@media (max-width: 480px) {
    .nav-wrapper {
        gap: 0.75rem;
    }
}

.nav-left {
    flex: 0 0 auto;
    min-width: 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
    height: 50px;
}

.logo:hover {
    opacity: 0.9;
}

.logo-image {
    height: 75px;
    width: auto;
    object-fit: contain;
    display: block;
}

@media (max-width: 480px) {
    .logo {
        height: 40px;
    }
    
    .logo-image {
        height: 40px;
    }
}

@media (min-width: 481px) and (max-width: 640px) {
    .logo {
        height: 45px;
    }
    
    .logo-image {
        height: 45px;
    }
}

.nav-center {
    flex: 1 1 auto;
    display: none;
    justify-content: center;
}

@media (min-width: 1024px) {
    .nav-center {
        display: flex;
    }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--gold);
}

/* Navigation Link with Hot Badge */
.nav-link-shopify {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-hot-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff4757 0%, #ff6348 100%);
    color: #fff;
    font-size: 0.625rem;
    font-weight: 700;
    padding: 0.125rem 0.375rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    animation: hotPulse 2s ease-in-out infinite;
    box-shadow: 0 2px 8px rgba(255, 71, 87, 0.4);
    vertical-align: middle;
    line-height: 1.2;
}

.nav-link-shopify:hover .nav-hot-badge {
    animation: hotPulse 1s ease-in-out infinite;
    transform: scale(1.1);
}

/* Mobile Menu Hot Badge Styling */
.mobile-menu-link.nav-link-shopify {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.mobile-menu-link.nav-link-shopify .nav-hot-badge {
    margin-left: auto;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .nav-hot-badge {
        font-size: 0.5625rem;
        padding: 0.1rem 0.3rem;
    }
}

@media (max-width: 480px) {
    .nav-hot-badge {
        font-size: 0.5rem;
        padding: 0.1rem 0.25rem;
    }
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.dropdown-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
    color: currentColor;
}

.nav-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--bg-primary);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 0;
    width: 90vw;
    max-width: 1200px;
    max-height: 80vh;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease, border-color 0.3s ease;
    z-index: 1000;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    margin-top: 0.75rem;
    overflow: hidden;
}

body.light-theme .nav-dropdown-menu {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.nav-dropdown.active .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.services-menu {
    padding: 2.5rem;
}

.services-scroll {
    max-height: calc(80vh - 5rem);
    overflow-y: auto;
    padding-right: 0.5rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(212, 175, 55, 0.5) var(--card-bg);
    transition: scrollbar-color 0.3s ease;
}

.services-scroll::-webkit-scrollbar {
    width: 6px;
}

.services-scroll::-webkit-scrollbar-track {
    background: var(--card-bg);
    border-radius: 10px;
    transition: background 0.3s ease;
}

.services-scroll::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.5);
    border-radius: 10px;
}

.services-scroll::-webkit-scrollbar-thumb:hover {
    background: rgba(212, 175, 55, 0.7);
}

.services-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.services-row:last-child {
    margin-bottom: 0;
}

@media (max-width: 1400px) {
    .services-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .nav-dropdown-menu {
        width: 95vw;
        max-width: 900px;
    }
    
    .services-menu {
        padding: 2rem;
    }
}

@media (max-width: 1024px) {
    .nav-dropdown-menu {
        width: 98vw;
        max-width: 100%;
        left: 0;
        transform: translateX(0) translateY(10px);
    }
    
    .nav-dropdown.active .nav-dropdown-menu {
        transform: translateX(0) translateY(0);
    }
    
    .services-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .services-menu {
        padding: 1.5rem;
    }
}

.services-col {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.services-title {
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.services-link {
    display: block;
    padding: 0.625rem 0;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
    line-height: 1.5;
}

.services-link::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.services-link:hover {
    color: var(--gold);
    padding-left: 12px;
}

.services-link:hover::before {
    width: 6px;
}

/* Hot Badge for Services */
.services-link-hot {
    position: relative;
}

.hot-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff4757 0%, #ff6348 100%);
    color: #fff;
    font-size: 0.625rem;
    font-weight: 700;
    padding: 0.125rem 0.375rem;
    border-radius: 4px;
    margin-left: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    animation: hotPulse 2s ease-in-out infinite;
    box-shadow: 0 2px 8px rgba(255, 71, 87, 0.4);
    vertical-align: middle;
    line-height: 1.2;
}

@keyframes hotPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(255, 71, 87, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 12px rgba(255, 71, 87, 0.6);
    }
}

.services-link-hot:hover .hot-badge {
    animation: hotPulse 1s ease-in-out infinite;
    transform: scale(1.1);
}

/* Mobile Menu Hot Badge */
.mobile-menu-dropdown-item.hot-item {
    position: relative;
}

.mobile-menu-dropdown-item .hot-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff4757 0%, #ff6348 100%);
    color: #fff;
    font-size: 0.625rem;
    font-weight: 700;
    padding: 0.125rem 0.375rem;
    border-radius: 4px;
    margin-left: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    animation: hotPulse 2s ease-in-out infinite;
    box-shadow: 0 2px 8px rgba(255, 71, 87, 0.4);
    vertical-align: middle;
    line-height: 1.2;
}

.nav-right {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

@media (max-width: 480px) {
    .nav-right {
        gap: 0.5rem;
    }
}

/* Theme Toggle Button */
.theme-toggle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .theme-toggle-btn {
        width: 36px;
        height: 36px;
    }
}

.theme-toggle-btn:hover {
    background: var(--card-bg);
    border-color: var(--gold);
    color: var(--gold);
    transform: scale(1.05);
}

body.light-theme .theme-toggle-btn:hover {
    background: rgba(0, 0, 0, 0.05);
}

.theme-toggle-btn:active {
    transform: scale(0.95);
}

.theme-icon {
    width: 20px;
    height: 20px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

@media (max-width: 480px) {
    .theme-icon {
        width: 18px;
        height: 18px;
    }
}

.theme-icon-light {
    display: none;
}

.theme-icon-dark {
    display: block;
}

body.light-theme .theme-icon-light {
    display: block;
}

body.light-theme .theme-icon-dark {
    display: none;
}

.btn-primary {
    padding: 0.5rem 1.5rem;
    background-color: var(--gold);
    color: var(--black);
    font-weight: 600;
    border-radius: 2px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s;
    white-space: nowrap;
}

.btn-primary:hover {
    background-color: rgba(212, 175, 55, 0.9);
}

/* Shopify Button */
.btn-shopify {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #95BF47 0%, #5e8e3e 100%);
    color: #fff;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(149, 191, 71, 0.3);
}

.btn-shopify:hover {
    background: linear-gradient(135deg, #a5cf57 0%, #6e9e4e 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(149, 191, 71, 0.4);
}

.btn-shopify:active {
    transform: translateY(0);
}

.shopify-hot-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff4757 0%, #ff6348 100%);
    color: #fff;
    font-size: 0.625rem;
    font-weight: 700;
    padding: 0.125rem 0.375rem;
    border-radius: 4px;
    margin-left: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    animation: hotPulse 2s ease-in-out infinite;
    box-shadow: 0 2px 6px rgba(255, 71, 87, 0.5);
    vertical-align: middle;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .btn-shopify {
        padding: 0.4rem 0.75rem;
        font-size: 0.875rem;
    }
    
    .shopify-hot-badge {
        font-size: 0.5625rem;
        padding: 0.1rem 0.3rem;
        margin-left: 0.375rem;
    }
}

@media (max-width: 480px) {
    .btn-shopify {
        padding: 0.35rem 0.6rem;
        font-size: 0.8125rem;
    }
    
    .btn-shopify svg {
        width: 16px;
        height: 16px;
        margin-right: 0.375rem;
    }
    
    .shopify-hot-badge {
        font-size: 0.5rem;
        padding: 0.1rem 0.25rem;
        margin-left: 0.25rem;
    }
}

/* Header CTA Button with Special Hover Effect */
.btn-header-cta {
    position: relative;
    overflow: hidden;
    border-radius: 50px;
    background-color: var(--gold);
    color: var(--black);
    padding: 0.625rem 1.75rem;
    z-index: 1;
    transition: color 0.3s ease 0.2s;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    text-decoration: none;
    display: inline-block;
}

.btn-header-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--black);
    z-index: -1;
    transition: left 0.4s ease;
}

.btn-header-cta:hover,
.btn-header-cta.hover-active {
    color: var(--white);
}

/* On hover: black comes from left */
.btn-header-cta.hover-active::before {
    left: 0;
    transition: left 0.4s ease;
}

/* When hover is removed, black goes to right */
.btn-header-cta.hover-out::before {
    left: 100%;
    transition: left 0.4s ease;
}

/* After hover out animation completes, keep it at right position permanently (no transition back) */
.btn-header-cta.has-hovered-out::before {
    left: 100%;
    transition: none;
}

/* When resetting to left (before animating), set position instantly with no transition */
.btn-header-cta.reset-to-left::before {
    left: -100%;
    transition: none;
}

/* On hover: black comes from left (always from left, regardless of previous state) */
.btn-header-cta.hover-active::before {
    left: 0;
    transition: left 0.4s ease;
}

@media (max-width: 1023px) {
    .nav-right .btn-primary {
        display: none;
    }
}

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .mobile-menu-btn {
        width: 36px;
        height: 36px;
        padding: 0.375rem;
    }
}

.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(212, 175, 55, 0.4);
}

.mobile-menu-btn:active {
    transform: scale(0.95);
}

.mobile-menu-btn svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 480px) {
    .mobile-menu-btn svg {
        width: 18px;
        height: 18px;
    }
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    background: var(--bg-primary);
    backdrop-filter: blur(20px);
    z-index: 100;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease;
}

body.light-theme .mobile-menu {
    background: rgba(255, 255, 255, 0.98);
}

.mobile-menu::-webkit-scrollbar {
    width: 6px;
}

.mobile-menu::-webkit-scrollbar-track {
    background: var(--card-bg);
    transition: background 0.3s ease;
}

.mobile-menu::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.5);
    border-radius: 10px;
}

.mobile-menu::-webkit-scrollbar-thumb:hover {
    background: rgba(212, 175, 55, 0.7);
}

.mobile-menu.show {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1rem;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    background: var(--bg-primary);
    z-index: 1;
    transition: background 0.3s ease, border-color 0.3s ease;
}

body.light-theme .mobile-menu-header {
    background: rgba(255, 255, 255, 0.98);
}

@media (min-width: 480px) {
    .mobile-menu-header {
        padding: 1.5rem;
    }
}

.mobile-menu-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
    height: 45px;
}

.mobile-menu-logo:hover {
    opacity: 0.9;
}

.mobile-logo-image {
    height: 45px;
    width: auto;
    object-fit: contain;
    display: block;
}

@media (min-width: 480px) {
    .mobile-menu-logo {
        height: 50px;
    }
    
    .mobile-logo-image {
        height: 50px;
    }
}

.mobile-menu-close {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .mobile-menu-close {
        width: 36px;
        height: 36px;
        padding: 0.375rem;
    }
}

.mobile-menu-close:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
    color: var(--gold);
    transform: rotate(90deg);
}

.mobile-menu-close svg {
    width: 24px;
    height: 24px;
}

.mobile-menu-content {
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

@media (min-width: 480px) {
    .mobile-menu-content {
        padding: 2rem 1.5rem;
    }
}

.mobile-menu-link {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 1rem 1.25rem;
    font-size: 1.125rem;
    transition: color 0.3s ease;
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mobile-menu-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: rgba(212, 175, 55, 0.1);
    transition: width 0.3s ease;
    border-left: 3px solid var(--gold);
}

.mobile-menu-link:hover,
.mobile-menu-link:active {
    color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
    padding-left: 1.75rem;
}

.mobile-menu-link:hover::before,
.mobile-menu-link:active::before {
    width: 100%;
}

/* Mobile Menu Dropdown */
.mobile-menu-dropdown {
    position: relative;
}

.mobile-menu-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-menu-dropdown-toggle .dropdown-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
    color: currentColor;
}

.mobile-menu-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.mobile-menu-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    margin-top: 0.5rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    width: 100%;
}

.mobile-menu-dropdown.active .mobile-menu-dropdown-menu {
    max-height: 3000px;
    padding: 1.25rem;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(212, 175, 55, 0.5) var(--card-bg);
}

.mobile-menu-dropdown.active .mobile-menu-dropdown-menu::-webkit-scrollbar {
    width: 6px;
}

.mobile-menu-dropdown.active .mobile-menu-dropdown-menu::-webkit-scrollbar-track {
    background: var(--card-bg);
    border-radius: 10px;
    transition: background 0.3s ease;
}

.mobile-menu-dropdown.active .mobile-menu-dropdown-menu::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.5);
    border-radius: 10px;
}

.mobile-menu-dropdown.active .mobile-menu-dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: rgba(212, 175, 55, 0.7);
}

.mobile-services-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    transition: border-color 0.3s ease;
}

.mobile-services-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.mobile-services-title {
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    display: block;
}

.mobile-menu-dropdown-item {
    display: block;
    padding: 0.875rem 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    margin-bottom: 0.5rem;
}

.mobile-menu-dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: rgba(212, 175, 55, 0.1);
    border-left: 3px solid var(--gold);
    transition: width 0.3s ease;
    border-radius: 8px 0 0 8px;
}

.mobile-menu-dropdown-item:hover,
.mobile-menu-dropdown-item:active {
    color: var(--gold);
    background: rgba(212, 175, 55, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
    padding-left: 1.5rem;
    transform: translateX(4px);
}

.mobile-menu-dropdown-item:hover::before,
.mobile-menu-dropdown-item:active::before {
    width: 100%;
}

.mobile-menu-cta {
    margin-top: 1.5rem;
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    text-align: center;
    justify-content: center;
}

/* Hero Section */
.hero {
    position: relative;
   
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 4rem;
    transition: color 0.3s ease;
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding: 0.625rem 1.5rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.1) 100%);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
}

.badge-icon {
    font-size: 1rem;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.2) rotate(180deg);
    }
}

.badge-text {
    color: var(--gold);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: var(--text-primary);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    transition: color 0.3s ease;
}

body.light-theme .hero-title {
    text-shadow: 0 2px 20px rgba(255, 255, 255, 0.5);
}

.hero-title .block {
    display: block;
    margin-top: 0.5rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 5.5rem;
    }
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    transition: color 0.3s ease;
}

body.light-theme .hero-description {
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.5);
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.25rem;
    }
}

.hero-tagline {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.75;
    max-width: 32rem;
    transition: color 0.3s ease;
}

@media (min-width: 768px) {
    .hero-tagline {
        font-size: 1.25rem;
    }
}

.hero-cta {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-hero-cta {
    position: relative;
    overflow: hidden;
    border-radius: 50px;
    background-color: var(--gold);
    color: var(--black);
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 1;
    transition: color 0.3s ease 0.2s;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
}

.btn-hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--black);
    z-index: -1;
    transition: left 0.4s ease;
}

.btn-hero-cta:hover,
.btn-hero-cta.hover-active {
    color: var(--white);
}

/* On hover: black comes from left */
.btn-hero-cta.hover-active::before {
    left: 0;
    transition: left 0.4s ease;
}

/* When hover is removed, black goes to right */
.btn-hero-cta.hover-out::before {
    left: 100%;
    transition: left 0.4s ease;
}

/* After hover out animation completes, keep it at right position permanently (no transition back) */
.btn-hero-cta.has-hovered-out::before {
    left: 100%;
    transition: none;
}

/* When resetting to left (before animating), set position instantly with no transition */
.btn-hero-cta.reset-to-left::before {
    left: -100%;
    transition: none;
}

/* On hover: black comes from left (always from left, regardless of previous state) */
.btn-hero-cta.hover-active::before {
    left: 0;
    transition: left 0.4s ease;
}

.btn-hero-cta svg {
    transition: transform 0.3s ease;
}

.btn-hero-cta:hover svg,
.btn-hero-cta.hover-active svg {
    transform: translateX(5px);
}

/* Video fallback if video doesn't load */
.hero-video-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #000000 100%);
    z-index: 1;
}

.hero-video-wrapper:has(.hero-video[src=""])::before,
.hero-video-wrapper:not(:has(.hero-video[src]))::before {
    z-index: 3;
}

.btn-secondary {
    padding: 1rem 2rem;
    border: 2px solid var(--gold);
    color: var(--gold);
    font-weight: 600;
    border-radius: 2px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: var(--gold);
    color: var(--black);
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 10;
}

.scroll-indicator svg {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* Section Styles */
.section {
    padding: 5rem 0;
}

@media (min-width: 1024px) {
    .section {
        padding: 8rem 0;
    }
}

.services-section {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

@media (min-width: 1024px) {
    .section-header {
        margin-bottom: 5rem;
    }
}

.section-badge {
    display: inline-block;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: var(--gold);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.section-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    letter-spacing: -0.03em;
    line-height: 1.2;
    transition: color 0.3s ease;
}

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 3.5rem;
    }
}

.section-header p {
    color: #9CA3AF;
    font-size: 1.125rem;
    max-width: 36rem;
    margin: 0 auto;
    line-height: 1.7;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

/* Expertise Grid - Professional Design */
.expertise-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .expertise-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

.expertise-card {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.expertise-card:hover {
    transform: translateY(-12px);
}

.expertise-card-inner {
    background: var(--card-bg);
    border: 1.5px solid var(--border-color);
    border-radius: 24px;
    padding: 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.01) 100%);
}

.expertise-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.expertise-card:hover .expertise-card-inner {
    border-color: var(--gold);
    box-shadow: 0 24px 60px rgba(212, 175, 55, 0.2), 0 0 0 1px rgba(212, 175, 55, 0.1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.expertise-card:hover .expertise-card-inner::before {
    opacity: 1;
}

.expertise-category-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    width: fit-content;
}

.expertise-card:hover .expertise-category-badge {
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.4);
    transform: scale(1.05);
}

.expertise-category-badge.expertise-hot {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.1) 100%);
    border-color: rgba(212, 175, 55, 0.3);
}

.hot-indicator {
    display: inline-flex;
    align-items: center;
    padding: 0.125rem 0.5rem;
    background: var(--gold);
    color: #000;
    border-radius: 12px;
    font-size: 0.625rem;
    font-weight: 700;
    margin-left: 0.25rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.expertise-icon-wrapper {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    margin-bottom: 1.5rem;
    color: var(--gold);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.expertise-icon-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.expertise-card:hover .expertise-icon-wrapper {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.1) 100%);
    border-color: var(--gold);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.expertise-card:hover .expertise-icon-wrapper::before {
    width: 120px;
    height: 120px;
}

.expertise-icon-wrapper svg {
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

.expertise-card:hover .expertise-icon-wrapper svg {
    transform: scale(1.1);
}

.expertise-content {
    flex: 1;
    margin-bottom: 1.5rem;
}

.expertise-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

.expertise-card:hover .expertise-content h3 {
    color: var(--gold);
}

.expertise-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.expertise-card:hover .expertise-content p {
    color: var(--text-primary);
}

.expertise-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.expertise-card:hover .expertise-footer {
    border-top-color: rgba(212, 175, 55, 0.3);
}

.expertise-link-text {
    font-weight: 600;
    color: var(--gold);
    font-size: 0.9375rem;
    transition: all 0.3s ease;
}

.expertise-card:hover .expertise-link-text {
    color: var(--gold-light);
    transform: translateX(4px);
}

.expertise-footer svg {
    color: var(--gold);
    transition: all 0.3s ease;
}

.expertise-card:hover .expertise-footer svg {
    transform: translateX(6px);
    color: var(--gold-light);
}

/* Light theme adjustments */
.light-theme .expertise-card-inner {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.01) 100%);
    border-color: rgba(212, 175, 55, 0.2);
}

.light-theme .expertise-card:hover .expertise-card-inner {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.02) 100%);
    box-shadow: 0 24px 60px rgba(212, 175, 55, 0.15), 0 0 0 1px rgba(212, 175, 55, 0.1);
}

.service-card {
    padding: 0;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.03);
}

.service-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(212, 175, 55, 0.08);
    line-height: 1;
    font-family: 'Poppins', sans-serif;
    z-index: 0;
    transition: color 0.3s ease;
}

.service-card:hover .service-number {
    color: rgba(212, 175, 55, 0.12);
}

.service-image-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    background: rgba(0, 0, 0, 0.3);
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image {
    transform: scale(1.1);
}

.service-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.service-card:hover h3 {
    color: var(--gold);
}

.service-card p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
    font-size: 1rem;
    flex-grow: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9375rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.service-card:hover .service-link {
    border-top-color: rgba(212, 175, 55, 0.3);
    gap: 0.75rem;
}

.service-link svg {
    transition: transform 0.3s ease;
}

.service-card:hover .service-link svg {
    transform: translateX(4px);
}

/* Why Choose Section */
.why-choose-section {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    color: var(--text-primary);
    transition: background 0.3s ease, color 0.3s ease;
}

.why-choose-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 5rem;
}

@media (min-width: 1024px) {
    .why-choose-top {
        grid-template-columns: 1.1fr 1fr;
        gap: 5rem;
        margin-bottom: 6rem;
    }
}

.why-image-wrapper {
    width: 100%;
    height: 0;
    padding-bottom: 75%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.why-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.why-image-wrapper:hover .why-image {
    transform: scale(1.05);
}

.why-features-bottom {
    margin-top: 4rem;
}

.why-choose-left h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
    line-height: 1.2;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

@media (min-width: 768px) {
    .why-choose-left h2 {
        font-size: 3.5rem;
    }
}

.why-description {
    color: var(--text-muted);
    font-size: 1.125rem;
    margin-bottom: 3rem;
    line-height: 1.8;
    transition: color 0.3s ease;
}

.why-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .why-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .why-features {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

.why-feature-item {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1.5px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.why-feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.why-feature-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--gold) 0%, rgba(212, 175, 55, 0.5) 100%);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.5s ease;
    z-index: 1;
}

.why-feature-item:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(212, 175, 55, 0.3), 0 0 30px rgba(212, 175, 55, 0.2);
}

.why-feature-item:hover::before {
    opacity: 1;
}

.why-feature-item:hover::after {
    transform: scaleY(1);
}

.feature-number {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    opacity: 0.6;
    transition: all 0.5s ease;
    position: relative;
    z-index: 2;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    letter-spacing: -0.05em;
}

.why-feature-item:hover .feature-number {
    opacity: 1;
    transform: scale(1.15);
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.feature-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.feature-content h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    transition: all 0.4s ease;
    line-height: 1.3;
}

.why-feature-item:hover .feature-content h4 {
    color: var(--gold);
    transform: translateX(4px);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.feature-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
    transition: color 0.4s ease;
}

.why-feature-item:hover .feature-content p {
    color: var(--text-primary);
}

.stats-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.03) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

.stat-value {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
    letter-spacing: -0.03em;
}

.stat-title {
    color: #9CA3AF;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    z-index: 1;
}

/* Portfolio Section */
.portfolio-section {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.portfolio-carousel-wrapper {
    position: relative;
    overflow: hidden;
    padding: 0 3rem;
}

@media (max-width: 767px) {
    .portfolio-carousel-wrapper {
        padding: 0 1rem;
    }
}

.portfolio-carousel {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 2rem;
}

.portfolio-carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(212, 175, 55, 0.3);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-btn svg {
    width: 20px;
    height: 20px;
}

.portfolio-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    align-items: stretch;
    height: 260px; /* shorter, landscape-friendly */
    min-width: 100%;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .portfolio-card {
        min-width: calc(50% - 1rem);
    }
}

@media (min-width: 1024px) {
    .portfolio-card {
        min-width: calc(33.333% - 1.33rem);
    }
}

.portfolio-card:hover {
    transform: translateY(-12px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 24px 48px rgba(212, 175, 55, 0.3);
}

.portfolio-image-wrapper {
    /* default fallback; overridden for side-by-side layout below */
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
}

.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-card:hover .portfolio-image {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.9) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

/* Alternative card design for complex/landscape projects */

.portfolio-card.alt-card {
    display: flex;
    gap: 1.5rem;
    align-items: stretch;
    padding: 0.5rem;
    height: 260px;
    position: relative;
}

.portfolio-card.alt-card .portfolio-thumb {
    /* show the image full-width initially */
    flex: 1 1 100%;
    height: 100%;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
}

.portfolio-card.alt-card .portfolio-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.05);
}

.portfolio-card.alt-card .portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.portfolio-card.alt-card .portfolio-info {
    /* full-card overlay hidden by default; revealed on hover */
    position: absolute;
    inset: 0; /* cover entire card */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 2rem 2.25rem;
    /* darker overlay for better contrast on white images */
    background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.75) 100%);
    border-radius: 14px;
    transform: translateY(14px) scale(0.995);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.32s cubic-bezier(0.22,0.9,0.32,1), opacity 0.28s ease;
    z-index: 8;
    color: #ffffff; /* ensure readable text */
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.portfolio-card.alt-card .portfolio-meta-row {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 0.65rem;
}

.portfolio-card.alt-card .portfolio-meta-row {
    justify-content: space-between;
    width: 100%;
}

.portfolio-card.alt-card .portfolio-category {
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    background: rgba(212,175,55,0.12);
    border: 1px solid rgba(212,175,55,0.18);
    color: var(--gold);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.portfolio-card.alt-card .portfolio-status {
    font-size: 0.75rem;
    color: var(--text-secondary);
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.03);
}

.portfolio-card.alt-card .portfolio-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: var(--text-primary);
    line-height: 1.15;
    max-height: 3.3rem; /* limit to ~2 lines */
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.portfolio-card.alt-card .portfolio-actions-row {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.btn-portfolio {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1rem;
    /* keep gold accent but use darker translucent background for contrast */
    background: rgba(0,0,0,0.28);
    color: var(--gold);
    border: 1px solid rgba(212,175,55,0.28);
    border-radius: 10px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.95rem;
}

.btn-portfolio.btn-disabled {
    opacity: 0.6;
    cursor: default;
}

.portfolio-card.alt-card .portfolio-order {
    margin-left: auto;
    color: var(--text-secondary);
    font-weight: 600;
}

.portfolio-card.alt-card .portfolio-order {
    font-size: 0.9rem;
    opacity: 0.95;
    color: rgba(255,255,255,0.9);
}

.portfolio-card.alt-card:hover .portfolio-image {
    transform: scale(1.04) rotate(-0.6deg);
}

/* Reveal the info panel on hover or keyboard focus — now full-card */
.portfolio-card.alt-card:hover .portfolio-info,
.portfolio-card.alt-card:focus-within .portfolio-info {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
}

/* Dim the image slightly when panel is visible */
.portfolio-card.alt-card:hover .portfolio-thumb::after,
.portfolio-card.alt-card:focus-within .portfolio-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.5) 100%);
    pointer-events: none;
}

@media (max-width: 767px) {
    .portfolio-card.alt-card {
        flex-direction: column;
        height: 400px;
        gap: 0;
        padding: 0;
    }

    .portfolio-card.alt-card .portfolio-thumb {
        flex: none;
        height: 100%;
    }

    .portfolio-card.alt-card .portfolio-info {
        padding: 1.25rem 1rem;
        background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.95) 100%);
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        transform: translateY(100%);
        opacity: 1;
        pointer-events: auto;
    }
}

/* Landscape-friendly side-by-side layout for larger screens */
.portfolio-card .portfolio-media {
    flex: 0 0 60%;
    display: block;
}

.portfolio-card .portfolio-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.portfolio-card .portfolio-content {
    position: relative;
    flex: 1 1 40%;
    display: flex;
    align-items: center;
    padding: 2rem 2.25rem;
    background: linear-gradient(180deg, rgba(0,0,0,0.0) 0%, rgba(0,0,0,0.03) 100%);
    transform: none;
}

.portfolio-card .portfolio-content-inner {
    width: 100%;
}

.portfolio-card .portfolio-content h3 {
    color: var(--text-primary);
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.18);
}

.portfolio-card:hover .portfolio-image {
    transform: scale(1.06);
}

/* Mobile: revert to stacked / original behavior */
@media (max-width: 767px) {
    .portfolio-card {
        flex-direction: column;
        height: 400px;
    }

    .portfolio-card .portfolio-media,
    .portfolio-card .portfolio-image-wrapper {
        flex: none;
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
    }

    .portfolio-card .portfolio-content {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 2.5rem 2rem;
        background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.95) 100%);
        transform: translateY(100%);
        transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .portfolio-card:hover .portfolio-content {
        transform: translateY(0);
    }
}

.portfolio-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem 2rem;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.95) 100%);
    backdrop-filter: blur(20px);
    z-index: 2;
    display: flex;
    flex-direction: column;
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-card:hover .portfolio-content {
    transform: translateY(0);
}

.portfolio-category {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.portfolio-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

.portfolio-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
    flex: 1;
    transition: color 0.3s ease;
}

.portfolio-links {
    display: flex;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1.5rem;
}

.portfolio-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    transition: all 0.4s ease;
}

.portfolio-link:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--gold);
    color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.portfolio-link svg {
    transition: transform 0.3s ease;
}

.portfolio-link:hover svg {
    transform: translateX(4px) translateY(-2px);
}
/* Our Team Section */
.team-section {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    transition: background-color 0.3s ease, color 0.3s ease;
    }

.team-ceo-row {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.team-card-ceo {
    max-width: 300px;
    width: 100%;
}

.team-employees-row {
    margin-top: 2rem;
}

.team-carousel-wrapper {
    position: relative;
    overflow: hidden;
    padding: 0 3rem;
}

@media (max-width: 767px) {
    .team-carousel-wrapper {
        padding: 0 1rem;
    }
}

.team-carousel {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 2rem;
}

.team-carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.team-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    max-width: 300px;
    width: 100%;
    min-width: 300px;
    flex-shrink: 0;
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.25);
    background: rgba(255, 255, 255, 0.03);
}

.team-image-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 90%;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
}

.team-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-position: top;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team-card:hover .team-image {
    transform: scale(1.1);
}

.team-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-social {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    display: flex;
    gap: 0.5rem;
    z-index: 2;
    opacity: 0;
    transition: all 0.5s ease;
}

.team-card:hover .team-social {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.social-link:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.team-info {
    padding: 1.5rem 1rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
}

.team-info h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.375rem;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

.team-card:hover .team-info h3 {
    color: var(--gold);
}

.team-role {
    color: var(--text-muted);
    font-size: 0.8125rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

/* Contact Section */
.contact-section {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.contact-section .container {
    position: relative;
    z-index: 1;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1.1fr 1fr;
        gap: 5rem;
    }
}

.contact-left h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .contact-left h2 {
        font-size: 3.5rem;
    }
}

.contact-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    margin-bottom: 3rem;
    line-height: 1.8;
    max-width: 500px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateX(8px);
}

.info-icon-wrapper {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    color: var(--gold);
    transition: all 0.3s ease;
}

.info-item:hover .info-icon-wrapper {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--gold);
    transform: scale(1.05);
}

.info-icon-wrapper svg {
    width: 20px;
    height: 20px;
}

.info-content {
    flex: 1;
}

.info-label {
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.375rem;
    transition: color 0.3s ease;
}

.info-value {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.info-item:hover .info-value {
    color: var(--gold);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1.5px solid rgba(212, 175, 55, 0.2);
    border-radius: 24px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.contact-form:hover {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.15);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--gold);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-input,
.form-textarea,
.form-select {
    padding: 1.125rem 1.5rem;
    background: var(--card-bg);
    border: 1.5px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.4s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--card-bg);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15), 0 4px 15px rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

body.light-theme .form-input:focus,
body.light-theme .form-textarea:focus,
body.light-theme .form-select:focus {
    background: rgba(0, 0, 0, 0.02);
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' fill='none' stroke='%23D4AF37' viewBox='0 0 24 24'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 20px;
    padding-right: 3.5rem;
}

.form-select option {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    padding: 0.5rem;
}

.form-select:invalid {
    color: var(--text-muted);
}

.form-textarea {
    width: 100%;
    resize: vertical;
    min-height: 150px;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-muted);
}

.btn-submit-cta {
    position: relative;
    overflow: hidden;
    border-radius: 50px;
    background-color: var(--gold);
    color: var(--black);
    padding: 1.125rem 2.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.25);
    z-index: 1;
    transition: color 0.3s ease 0.2s;
    border: none;
    cursor: pointer;
}

.btn-submit-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--black);
    z-index: -1;
    transition: left 0.4s ease;
}

.btn-submit-cta:hover,
.btn-submit-cta.hover-active {
    color: var(--white);
}

.btn-submit-cta.hover-active::before {
    left: 0;
    transition: left 0.4s ease;
}

.btn-submit-cta.hover-out::before {
    left: 100%;
    transition: left 0.4s ease;
}

.btn-submit-cta.has-hovered-out::before {
    left: 100%;
    transition: none;
}

.btn-submit-cta.reset-to-left::before {
    left: -100%;
    transition: none;
}

.btn-submit-cta svg {
    transition: transform 0.3s ease;
}

.btn-submit-cta:hover svg,
.btn-submit-cta.hover-active svg {
    transform: translateX(5px);
}

/* Footer */
footer {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    border-top: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.4) 50%, transparent 100%);
}

.footer-content {
    padding: 5rem 1.5rem 2.5rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .footer-content {
        padding: 6rem 0 3rem;
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.5rem;
    margin-bottom: 3.5rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 4rem;
    }
}

@media (min-width: 1280px) {
    .footer-grid {
        gap: 5rem;
    }
}

.footer-col-main {
    max-width: 100%;
}

@media (min-width: 768px) {
    .footer-col-main {
        grid-column: span 2;
    }
}

@media (min-width: 1024px) {
    .footer-col-main {
        grid-column: span 1;
        max-width: 400px;
    }
}

.footer-brand {
    margin-bottom: 2.5rem;
}

.footer-logo {
    display: inline-block;
    text-decoration: none;
    transition: opacity 0.3s ease;
    margin-bottom: 1.5rem;
}

.footer-logo:hover {
    opacity: 0.9;
}

.footer-logo-image {
    height: 115px;
    width: auto;
    object-fit: contain;
    display: block;
}

@media (max-width: 640px) {
    .footer-logo-image {
        height: 50px;
    }
}

.footer-description {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.75;
    margin-bottom: 2.5rem;
    max-width: 100%;
    transition: color 0.3s ease;
}

.footer-contact-info {
    margin-bottom: 2.5rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    padding: 0.75rem 0;
    transition: color 0.3s ease;
}

.footer-contact-item:hover {
    color: var(--text-primary);
}

.footer-contact-item svg {
    color: var(--gold);
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

.social-links {
    display: flex;
    gap: 0.875rem;
    flex-wrap: wrap;
}

.social-link {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-secondary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.social-link:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: rgba(212, 175, 55, 0.4);
    color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.15);
}

.footer-heading {
    font-family: 'Poppins', sans-serif;
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.75rem;
    transition: color 0.3s ease;
    letter-spacing: -0.01em;
    position: relative;
    padding-bottom: 0.875rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0;
    margin: 0;
}

.footer-links li {
    position: relative;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
    line-height: 1.6;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: -14px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 14px;
}

.footer-links a:hover::before {
    width: 6px;
}

.footer-offices-section {
    margin-top: 4rem;
    padding-top: 3.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

@media (min-width: 1024px) {
    .footer-offices-section {
        margin-top: 5rem;
        padding-top: 4rem;
    }
}

.footer-offices-section .footer-heading {
    margin-bottom: 2.5rem;
}

.office-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 640px) {
    .office-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .office-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1280px) {
    .office-list {
        grid-template-columns: repeat(5, 1fr);
        gap: 1.75rem;
    }
}

.office-item {
    padding: 1.75rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.office-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--gold);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

.office-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.office-item:hover::before {
    transform: scaleY(1);
}

.office-country {
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.25rem;
    display: block;
}

.office-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.office-address,
.office-phone {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
    font-size: 0.875rem;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.office-item:hover .office-address,
.office-item:hover .office-phone {
    color: var(--text-primary);
}

.office-address {
    font-weight: 500;
}

.office-phone {
    font-weight: 600;
    color: var(--text-primary);
}

.office-address svg,
.office-phone svg {
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 0.125rem;
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.office-item:hover .office-address svg,
.office-item:hover .office-phone svg {
    transform: scale(1.1);
}

.office-address span,
.office-phone span {
    flex: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    padding-top: 2.5rem;
    margin-top: 3rem;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: center;
    justify-content: space-between;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom-content {
        flex-direction: row;
        text-align: left;
        gap: 2rem;
    }
}

.footer-bottom-content p {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    justify-content: center;
}

@media (min-width: 768px) {
    .footer-bottom-links {
        justify-content: flex-end;
    }
}

.footer-bottom-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-bottom-links a:hover {
    color: var(--gold);
}

.footer-divider {
    color: var(--text-muted);
    opacity: 0.4;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Blog card delay based on data attribute */
.blog-card.fade-in[data-delay] {
    transition-delay: 0s;
}

.blog-card.fade-in[data-delay="0"] {
    transition-delay: 0s;
}

.blog-card.fade-in[data-delay="0.1"] {
    transition-delay: 0.1s;
}

.blog-card.fade-in[data-delay="0.2"] {
    transition-delay: 0.2s;
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Utility Classes */
.hidden {
    display: none;
}

.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 5rem;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.125rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
}

/* Blog Section */
.blog-section {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.blog-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.blog-section .container {
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-description {
    color: var(--text-muted);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 1.5rem auto 0;
    line-height: 1.8;
    transition: color 0.3s ease;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

.blog-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.04);
}

.blog-image-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
}

.blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-image {
    transform: scale(1.1);
}

.blog-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.blog-card:hover .blog-overlay {
    opacity: 1;
}

.blog-category {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    padding: 0.5rem 1rem;
    background: rgba(212, 175, 55, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    z-index: 2;
}

.blog-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.8125rem;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.blog-date {
    display: flex;
    align-items: center;
}

.blog-read-time {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 1rem;
}

.blog-read-time::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
}

.blog-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.4;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
    color: var(--gold);
}

.blog-excerpt {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
    transition: color 0.3s ease;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.blog-link svg {
    transition: transform 0.3s ease;
}

.blog-link:hover {
    color: var(--white);
}

.blog-link:hover svg {
    transform: translateX(5px);
}

/* Quote Request Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, background 0.3s ease;
    padding: 1.5rem;
}

body.light-theme .modal-overlay {
    background: rgba(0, 0, 0, 0.6);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    position: relative;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    border: 1.5px solid var(--border-color);
    border-radius: 24px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    scrollbar-width: thin;
    scrollbar-color: rgba(212, 175, 55, 0.5) var(--card-bg);
}

body.light-theme .modal-container {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* Custom Scrollbar for Webkit browsers (Chrome, Safari, Edge) */
.modal-container::-webkit-scrollbar {
    width: 8px;
}

.modal-container::-webkit-scrollbar-track {
    background: var(--card-bg);
    border-radius: 10px;
    margin: 10px 0;
}

.modal-container::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.5);
    border-radius: 10px;
    border: 2px solid transparent;
    background-clip: padding-box;
    transition: background 0.3s ease;
}

.modal-container::-webkit-scrollbar-thumb:hover {
    background: rgba(212, 175, 55, 0.7);
    background-clip: padding-box;
}

.modal-overlay.active .modal-container {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
    color: var(--gold);
    transform: rotate(90deg);
}

body.light-theme .modal-close {
    background: rgba(0, 0, 0, 0.05);
}

body.light-theme .modal-close:hover {
    background: rgba(212, 175, 55, 0.15);
}

body.light-theme .modal-close {
    background: rgba(0, 0, 0, 0.05);
}

body.light-theme .modal-close:hover {
    background: rgba(212, 175, 55, 0.15);
}

.modal-content {
    padding: 3rem 2.5rem 2.5rem;
}

@media (max-width: 640px) {
    .modal-content {
        padding: 2.5rem 1.5rem 2rem;
    }
}

.modal-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.modal-badge {
    display: inline-block;
    margin-bottom: 1rem;
}

.modal-badge span {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: var(--gold);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.modal-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

@media (max-width: 640px) {
    .modal-header h2 {
        font-size: 1.75rem;
    }
}

.modal-description {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
    transition: color 0.3s ease;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.quote-form .form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .quote-form .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.quote-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.quote-form .form-group label {
    color: var(--gold);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.quote-form .form-input,
.quote-form .form-select,
.quote-form .form-textarea {
    padding: 1rem 1.25rem;
    background: var(--card-bg);
    border: 1.5px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.4s ease;
}

.quote-form .form-input:focus,
.quote-form .form-select:focus,
.quote-form .form-textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--card-bg);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15), 0 4px 15px rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

body.light-theme .quote-form .form-input:focus,
body.light-theme .quote-form .form-select:focus,
body.light-theme .quote-form .form-textarea:focus {
    background: rgba(0, 0, 0, 0.02);
}

.quote-form .form-textarea {
    width: 100%;
    resize: vertical;
    min-height: 120px;
}

.quote-form .form-input::placeholder,
.quote-form .form-textarea::placeholder {
    color: var(--text-muted);
}

.quote-form .form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' fill='none' stroke='%23D4AF37' viewBox='0 0 24 24'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 20px;
    padding-right: 3.5rem;
}

.quote-form .form-select option {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    padding: 0.5rem;
}

.quote-form .form-select:invalid {
    color: var(--text-muted);
}

.quote-form .btn-submit-cta {
    margin-top: 0.5rem;
    width: 100%;
}

/* SEO Page Styles */
.seo-serps-section {
    padding: 8rem 0 6rem;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    transition: background-color 0.3s ease, color 0.3s ease;
}

@media (min-width: 1024px) {
    .seo-serps-section {
        padding: 10rem 0 8rem;
    }
}

.seo-serps-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 5rem;
}

@media (min-width: 1024px) {
    .seo-serps-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.seo-serps-content {
    order: 2;
}

@media (min-width: 1024px) {
    .seo-serps-content {
        order: 1;
    }
}

.seo-serps-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

@media (min-width: 768px) {
    .seo-serps-title {
        font-size: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .seo-serps-title {
        font-size: 4rem;
    }
}

.seo-gold {
    color: var(--gold);
}

.seo-serps-desc-group {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.seo-serps-desc {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

@media (min-width: 768px) {
    .seo-serps-desc {
        font-size: 1.25rem;
    }
}

.seo-serps-image {
    order: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (min-width: 1024px) {
    .seo-serps-image {
        order: 2;
    }
}

.seo-serps-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
}

.seo-holistic-block {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem 2rem;
    transition: background 0.3s ease, border-color 0.3s ease;
}

@media (min-width: 768px) {
    .seo-holistic-block {
        padding: 4rem 3rem;
    }
}

.seo-holistic-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

@media (min-width: 768px) {
    .seo-holistic-title {
        font-size: 2.5rem;
    }

}

.seo-holistic-desc {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.seo-holistic-desc:last-child {
    margin-bottom: 0;
}

/* SEO Features Cards Section */
.seo-features-cards-section {
    padding: 6rem 0;
    background-color: var(--bg-secondary);
    transition: background-color 0.3s ease;
}

.seo-features-cards-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .seo-features-cards-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .seo-features-cards-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

.seo-feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.seo-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gold);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.seo-feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
    background: var(--card-bg);
}

.seo-feature-card:hover::before {
    transform: scaleY(1);
}

.seo-feature-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    transition: color 0.3s ease, transform 0.3s ease;
}

.seo-feature-card:hover .seo-feature-icon {
    transform: scale(1.1);
    color: var(--gold);
}

.seo-feature-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.seo-feature-card:hover .seo-feature-title {
    color: var(--gold);
}

.seo-feature-desc {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.seo-link {
    color: var(--gold);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.seo-link:hover {
    color: var(--gold-light);
}

/* SEO Process Section */
.seo-process-section {
    padding: 6rem 0 4rem;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.seo-process-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

@media (min-width: 768px) {
    .seo-process-title {
        font-size: 3.5rem;
    }
}

.seo-process-desc {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    transition: color 0.3s ease;
}

@media (min-width: 768px) {
    .seo-process-desc {
        font-size: 1.25rem;
    }
}

/* SEO Process Cards Section */
.seo-process-cards-section {
    padding: 4rem 0 8rem;
    background-color: var(--bg-primary);
    transition: background-color 0.3s ease;
}

.seo-process-cards-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 640px) {
    .seo-process-cards-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .seo-process-cards-row {
        grid-template-columns: repeat(3, 1fr);
    }
}

.seo-process-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.seo-process-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.seo-process-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.seo-process-card:hover::after {
    transform: scaleX(1);
}

.seo-process-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 16px;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.seo-process-card:hover .seo-process-icon {
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.1);
    color: var(--gold);
}

.seo-process-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.seo-process-card:hover .seo-process-card-title {
    color: var(--gold);
}

.seo-process-card-desc {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-secondary);
    text-align: left;
    transition: color 0.3s ease;
}

/* Clients Section */
.clients-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
    color: var(--text-primary);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

@media (min-width: 640px) {
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .clients-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .clients-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 2rem;
    }
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo-wrapper {
    width: 56%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.client-logo-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.client-logo-wrapper:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.15);
}

.client-logo-wrapper:hover::before {
    transform: scaleX(1);
}

.client-logo-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.3s ease;
}

.client-logo-wrapper:hover .client-logo-img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

/* Partners Section */
.partners-section {
    padding: 6rem 0;
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

@media (min-width: 640px) {
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .partners-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 2rem;
    }
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo-wrapper {
    width: 59%;
    height: 125px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
   
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.partner-logo-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.partner-logo-wrapper:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 16px 40px rgba(212, 175, 55, 0.2);
}

.partner-logo-wrapper:hover::before {
    transform: scaleX(1);
}

.partner-logo-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.5);
    transition: all 0.3s ease;
}

.partner-logo-wrapper:hover .partner-logo-img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.15);
}

/* Notification System */
.notification-container {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 400px;
    pointer-events: none;
}

.notification {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: auto;
    position: relative;
    overflow: hidden;
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

.notification.success {
    border-left: 4px solid #10b981;
}

.notification.error {
    border-left: 4px solid #ef4444;
}

.notification.warning {
    border-left: 4px solid #f59e0b;
}

.notification.info {
    border-left: 4px solid #3b82f6;
}

.notification-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-top: 2px;
}

.notification.success .notification-icon {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.notification.error .notification-icon {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.notification.warning .notification-icon {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.notification.info .notification-icon {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.notification-content {
    flex: 1;
    min-width: 0;
}

.notification-title {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-primary);
    margin-bottom: 4px;
    line-height: 1.4;
}

.notification-message {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.notification-close {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-secondary);
    transition: color 0.2s ease;
    border: none;
    background: none;
    padding: 0;
    margin-top: 2px;
}

.notification-close:hover {
    color: var(--text-primary);
}

.notification-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: currentColor;
    opacity: 0.3;
    width: 100%;
    transform-origin: left;
    animation: notificationProgress 5s linear forwards;
}

.notification.success .notification-progress {
    background: #10b981;
}

.notification.error .notification-progress {
    background: #ef4444;
}

.notification.warning .notification-progress {
    background: #f59e0b;
}

.notification.info .notification-progress {
    background: #3b82f6;
}

@keyframes notificationProgress {
    from {
        transform: scaleX(1);
    }
    to {
        transform: scaleX(0);
    }
}

/* Light theme adjustments */
.light-theme .notification {
    background: #ffffff;
    border-color: #e5e7eb;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .notification-container {
        top: 80px;
        right: 16px;
        left: 16px;
        max-width: none;
    }
    
    .notification {
        transform: translateY(-100px);
    }
    
    .notification.show {
        transform: translateY(0);
    }
}

