/* ==================== GLOBAL STYLES ==================== */
:root {
    --primary: #D3A376;
    --secondary: #8C6E63;
    --accent: #FFE0B2;
    --accent-2: #FFF2DF;
    --accent-dark: #8C6E63;
    --accent-darker: #3E2522;
    --bg-primary: #3E2522;
    --bg-secondary: #4a2f2a;
    --bg-tertiary: #5a3f38;
    --text-primary: #FFF2DF;
    --text-secondary: #D3A376;
    --text-muted: #8C6E63;
    --border-color: #5a3f38;
    --gradient-primary: linear-gradient(135deg, #D3A376 0%, #8C6E63 50%, #3E2522 100%);
    --gradient-secondary: linear-gradient(135deg, #FFE0B2 0%, #D3A376 50%, #8C6E63 100%);
    --gradient-accent: linear-gradient(135deg, #FFF2DF 0%, #FFE0B2 100%);
    --shadow-sm: 0 2px 8px rgba(62, 37, 34, 0.3);
    --shadow-md: 0 4px 16px rgba(62, 37, 34, 0.4);
    --shadow-lg: 0 8px 32px rgba(62, 37, 34, 0.5);
    --shadow-xl: 0 20px 60px rgba(62, 37, 34, 0.6);
    --shadow-glow: 0 0 40px rgba(211, 163, 118, 0.4);
    --shadow-glow-accent: 0 0 40px rgba(255, 224, 178, 0.4);
}

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

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

html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}

body {
    font-family: 'Inter', 'Space Grotesk', sans-serif;
    background: linear-gradient(180deg, #4a2f2a 0%, var(--bg-primary) 50%, #3E2522 100%);
    color: var(--text-primary);
    overflow-x: hidden;
    overflow-y: auto;
    line-height: 1.6;
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
    height: auto;
    min-height: 100vh;
}

/* ==================== ANIMATED BACKGROUND ==================== */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    max-height: 100vh;
    z-index: 0;
    pointer-events: none;
    opacity: 0.15;
    overflow: hidden;
}

.bg-svg {
    width: 100%;
    height: 100%;
}

.animated-circle {
    animation: floatCircle 20s ease-in-out infinite;
}

@keyframes floatCircle {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(50px, -50px);
    }
}

.animated-path {
    animation: pathMove 25s ease-in-out infinite;
}

@keyframes pathMove {
    0%, 100% {
        d: path("M0,400 Q360,200 720,400 T1440,400");
    }
    50% {
        d: path("M0,450 Q360,250 720,450 T1440,450");
    }
}

/* ==================== HEADER ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 1.25rem 0;
    background: rgba(62, 37, 34, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(211, 163, 118, 0.2);
}

.header.scrolled {
    padding: 1rem 0;
    box-shadow: var(--shadow-md);
    background: rgba(62, 37, 34, 0.98);
}

.navbar {
    padding: 0;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.infinity-symbol {
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1;
    position: relative;
    display: inline-block;
    color: rgba(255, 255, 255, 0.3);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.infinity-symbol::before {
    content: '∞';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(255, 255, 255, 0.9) 20%,
        rgba(168, 85, 247, 1) 30%,
        rgba(255, 255, 255, 1) 40%,
        rgba(168, 85, 247, 1) 50%,
        rgba(255, 255, 255, 1) 60%,
        rgba(168, 85, 247, 1) 70%,
        rgba(255, 255, 255, 0.9) 80%,
        transparent 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 100%;
    animation: infinityGlowMove 2s linear infinite;
    filter: drop-shadow(0 0 8px rgba(168, 85, 247, 0.8)) 
            drop-shadow(0 0 15px rgba(255, 255, 255, 0.6));
}

@keyframes infinityGlowMove {
    0% {
        background-position: -100% 0;
    }
    100% {
        background-position: 100% 0;
    }
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    font-family: 'Space Grotesk', sans-serif;
    margin: 0;
    padding: 0;
}

.logo-subtitle {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-secondary);
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    letter-spacing: 0.5px;
}

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

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    width: calc(100% - 1.5rem);
}

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

.btn-cta {
    position: relative;
    padding: 0.7rem 1.5rem;
    background: var(--gradient-primary);
    border: none;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(211, 163, 118, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(211, 163, 118, 0.4);
}

.btn-arrow {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn-cta:hover .btn-arrow {
    transform: translateX(3px);
}

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

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

.navbar-toggler-icon i {
    font-size: 1.5rem;
    color: var(--text-primary);
}

/* ==================== HERO SECTION ==================== */
.hero-section {
    position: relative;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 40px;
    background: linear-gradient(180deg, rgba(74, 47, 42, 0.95) 0%, rgba(62, 37, 34, 0.98) 50%, rgba(62, 37, 34, 1) 100%);
    z-index: 1;
    margin-bottom: 0;
}

.hero-svg-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.2;
    pointer-events: none;
}

.hero-svg-bg svg {
    width: 100%;
    height: 100%;
}

.floating-shapes {
    animation: floatShapes 20s ease-in-out infinite;
}

@keyframes floatShapes {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(30px, -30px);
    }
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(211, 163, 118, 0.1);
    border: 1px solid rgba(211, 163, 118, 0.3);
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.badge-icon {
    width: 16px;
    height: 16px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    letter-spacing: -2px;
    font-family: 'Space Grotesk', sans-serif;
}

.title-main {
    display: block;
    opacity: 0;
    animation: fadeInUp 1s ease 0.3s forwards;
}

.title-highlight {
    display: block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    animation: fadeInUp 1s ease 0.6s forwards;
}

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

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.9s forwards;
    line-height: 1.8;
    max-width: 600px;
}

.hero-cta {
    opacity: 0;
    animation: fadeInUp 1s ease 1.2s forwards;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn {
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 20px rgba(211, 163, 118, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(211, 163, 118, 0.4);
}

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

.btn-secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.btn-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-icon {
    transform: translateX(5px);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    opacity: 0;
    animation: fadeInUp 1s ease 1.5s forwards;
}

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

.stat-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

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

.hero-illustration {
    width: 100%;
    height: auto;
    max-width: 500px;
    filter: drop-shadow(0 20px 60px rgba(211, 163, 118, 0.3));
}


/* ==================== SECTION STYLES ==================== */
section {
    padding: clamp(60px, 6vw, 80px) 0;
    position: relative;
    z-index: 1;
    margin: 0;
    overflow: hidden;
}

section:last-of-type {
    padding-bottom: clamp(40px, 5vw, 60px);
    margin-bottom: 0;
}

.section-svg-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.15;
    pointer-events: none;
}

.section-svg-bg svg {
    width: 100%;
    height: 100%;
}

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

.section-icon {
    width: 50px;
    height: 50px;
    color: var(--primary);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
    letter-spacing: -1px;
    font-family: 'Space Grotesk', sans-serif;
    opacity: 0;
    animation: fadeInUp 1s ease 0.2s forwards;
}

.section-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--text-secondary);
    font-weight: 400;
    opacity: 0;
    animation: fadeInUp 1s ease 0.4s forwards;
}

/* ==================== PRODUCTS SECTION ==================== */
.products-section {
    background: linear-gradient(180deg, rgba(52, 40, 48, 0.9) 0%, rgba(42, 31, 38, 0.95) 100%);
}

.product-card {
    background: rgba(255, 242, 223, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(211, 163, 118, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(50px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.product-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.product-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.3;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.product-icon-wrapper {
    position: relative;
    z-index: 1;
    margin-bottom: 1.5rem;
}

.product-icon {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 8px 20px rgba(211, 163, 118, 0.3));
    transition: transform 0.3s ease;
}

.product-card:hover .product-icon {
    transform: scale(1.1) rotate(5deg);
}

.product-title {
    font-size: clamp(1.5rem, 2.5vw, 1.9rem);
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    color: var(--text-primary);
}

.product-description {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: clamp(0.95rem, 1.2vw, 1.05rem);
    position: relative;
    z-index: 1;
    margin-bottom: 1.5rem;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.product-link svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.product-link:hover svg {
    transform: translateX(5px);
}

/* ==================== SERVICES SECTION ==================== */
.services-section {
    background: linear-gradient(180deg, rgba(42, 31, 38, 0.95) 0%, rgba(52, 40, 48, 0.9) 100%);
}

.service-card {
    background: rgba(255, 242, 223, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(211, 163, 118, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: var(--shadow-glow-accent);
}

.service-icon-wrapper {
    margin-bottom: 1.5rem;
    display: inline-block;
}

.service-icon {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 8px 20px rgba(255, 224, 178, 0.3));
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(-5deg);
}

.service-title {
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-description {
    color: var(--text-secondary);
    font-size: clamp(0.9rem, 1.1vw, 1rem);
    line-height: 1.7;
}

/* ==================== TEAM SECTION ==================== */
.team-section {
    background: linear-gradient(180deg, rgba(52, 40, 48, 0.9) 0%, rgba(42, 31, 38, 0.95) 100%);
}

.team-card {
    background: rgba(255, 242, 223, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(211, 163, 118, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(50px);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
}

.team-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.team-photo {
    margin-bottom: 1.5rem;
    position: relative;
}

.team-avatar {
    width: 160px;
    height: 160px;
    margin: 0 auto;
    filter: drop-shadow(0 10px 30px rgba(211, 163, 118, 0.3));
    transition: transform 0.3s ease;
}

.team-card:hover .team-avatar {
    transform: scale(1.1);
}

.team-name {
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.team-role {
    color: var(--text-secondary);
    font-size: clamp(0.95rem, 1.2vw, 1.05rem);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.4s ease;
}

.team-card:hover .team-social {
    transform: translateY(0);
    opacity: 1;
}

.team-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 242, 223, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(211, 163, 118, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.team-social a:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 20px rgba(211, 163, 118, 0.3);
}

/* ==================== CONTACT SECTION ==================== */
.contact-section {
    background: linear-gradient(180deg, rgba(42, 31, 38, 0.95) 0%, rgba(52, 40, 48, 0.9) 100%);
}

.contact-info {
    background: rgba(255, 242, 223, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(211, 163, 118, 0.3);
    border-radius: 20px;
    padding: 3rem;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.info-title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.info-item {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(211, 163, 118, 0.3);
}

.info-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.info-content h5 {
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.info-content p {
    color: var(--text-secondary);
    margin: 0;
    font-size: clamp(0.9rem, 1.1vw, 1.05rem);
}

.contact-form {
    background: rgba(255, 242, 223, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(211, 163, 118, 0.3);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

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

.form-control {
    width: 100%;
    padding: 1rem 1rem 1rem 1rem;
    background: rgba(255, 242, 223, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(211, 163, 118, 0.3);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: clamp(0.95rem, 1.1vw, 1rem);
    transition: all 0.3s ease;
    font-weight: 400;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 242, 223, 0.15);
    box-shadow: 0 0 0 3px rgba(211, 163, 118, 0.2), inset 0 1px 0 rgba(255, 242, 223, 0.2);
}

.form-control:focus + label,
.form-control:valid + label {
    top: -10px;
    left: 10px;
    font-size: 0.8rem;
    color: var(--primary);
    background: rgba(62, 37, 34, 0.95);
    padding: 0 0.5rem;
    font-weight: 600;
}

.form-group label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: var(--text-secondary);
    font-size: clamp(0.95rem, 1.1vw, 1rem);
    pointer-events: none;
    transition: all 0.3s ease;
    font-weight: 400;
}

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

.btn-submit {
    width: 100%;
    padding: 1.1rem 2rem;
    background: var(--gradient-primary);
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    font-size: clamp(0.95rem, 1.1vw, 1.1rem);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(211, 163, 118, 0.3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(211, 163, 118, 0.4);
}

.btn-submit.loading .btn-text {
    opacity: 0;
}

.btn-submit.loading .btn-loader {
    opacity: 1;
}

.btn-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    opacity: 0;
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* ==================== FOOTER ==================== */
.footer {
    background: linear-gradient(180deg, rgba(74, 47, 42, 0.95) 0%, rgba(62, 37, 34, 1) 100%);
    padding: clamp(40px, 5vw, 50px) 0 0;
    border-top: 1px solid rgba(211, 163, 118, 0.2);
    color: var(--text-primary);
    position: relative;
    z-index: 1;
    margin: 0 !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    overflow: hidden;
}

.footer .container {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

.footer .row {
    margin-bottom: 0 !important;
}

.footer .row:last-child {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.footer .row .col-12 {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.footer-svg-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.1;
    pointer-events: none;
}

.footer-svg-bg svg {
    width: 100%;
    height: 100%;
}

.footer-brand {
    position: relative;
    z-index: 1;
}

.footer-tagline {
    color: var(--primary);
    font-weight: 600;
    margin: 1rem 0 1.5rem;
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: clamp(0.9rem, 1.1vw, 1.05rem);
}

.footer-heading {
    font-size: clamp(1rem, 1.3vw, 1.2rem);
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.footer-links {
    list-style: none;
    padding: 0;
    position: relative;
    z-index: 1;
}

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

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    font-size: clamp(0.9rem, 1.1vw, 1.05rem);
    display: inline-block;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

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

.footer-links a:hover::after {
    width: 100%;
}

.social-icons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 242, 223, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(211, 163, 118, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-icon:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(211, 163, 118, 0.3);
}

.footer-bottom {
    margin-top: clamp(15px, 2vw, 20px) !important;
    margin-bottom: 0 !important;
    padding: clamp(10px, 1.5vw, 15px) 0 0 !important;
    border-top: 1px solid var(--border-color);
    text-align: center;
    color: var(--text-secondary);
    font-size: clamp(0.85rem, 1vw, 0.95rem);
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    margin: 0 !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
    padding-bottom: 0 !important;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 992px) {
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .navbar-nav {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid var(--border-color);
    }
    
    .btn-cta {
        margin-top: 1rem;
        margin-left: 0 !important;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .logo-text-wrapper {
        gap: 0.1rem;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .logo-subtitle {
        font-size: 0.6rem;
    }
    
    .hero-section {
        padding-top: 80px;
        min-height: 90vh;
    }
    
    .hero-visual {
        display: none;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 1.5rem;
        justify-content: center;
        flex-wrap: nowrap;
    }
    
    .stat-item {
        flex: 1;
        min-width: 0;
        text-align: center;
    }
    
    .stat-number {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .info-title {
        text-align: center;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .info-icon {
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .infinity-symbol {
        font-size: 2rem;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .logo-subtitle {
        font-size: 0.55rem;
    }
    
    .product-card,
    .service-card,
    .contact-info,
    .contact-form,
    .team-card {
        padding: 1.5rem;
    }
    
    .hero-stats {
        gap: 1rem;
    }
}
