* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a1a1a;
    --gold-accent: #d4af37;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --bg-cream: #faf8f5;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.15);
    --facebook-color: #1877f2;
    --linkedin-color: #0077b5;
    --youtube-color: #ff0000;
}

body {
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
    overflow-x: hidden;
}

/* ========== PREMIUM NAVIGATION ========== */
.premium-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    backdrop-filter: blur(0px);
    border-bottom: 1px solid rgba(212, 175, 55, 0);
    transition: all 0.3s ease;
}

.premium-nav.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 20px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--gold-accent), #f4d03f);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #000;
    font-family: 'Playfair Display', serif;
}

.logo-text {
    font-size: 24px;
    font-weight: 600;
    color: var(--bg-white);
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-accent);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--gold-accent);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 12px 30px;
    background: var(--gold-accent);
    color: #000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: #f4d03f;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

/* ========== FLOATING AI CHATBOT BUTTON (LEFT SIDE) - MESSENGER STYLE ========== */
.floating-chatbot {
    position: fixed;
    left: 30px;
    bottom: 30px;
    z-index: 999;
}

.chatbot-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #00B2FF 0%, #006AFF 100%);
    color: var(--bg-white);
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 106, 255, 0.4);
    transition: all 0.3s ease;
}

.chatbot-btn svg {
    fill: currentColor;
    flex-shrink: 0;
}

.chatbot-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 106, 255, 0.5);
}

/* ========== AI CHATBOT MODAL - MESSENGER STYLE ========== */
.chatbot-modal {
    position: fixed;
    bottom: 100px;
    left: 30px;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
}

.chatbot-modal.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    pointer-events: auto;
}

.chatbot-container {
    width: 380px;
    height: 600px;
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.chatbot-header {
    background: var(--bg-white);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e4e6eb;
}

.chatbot-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chatbot-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.chatbot-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-fallback {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gold-accent), #f4d03f);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: #000;
    font-family: 'Playfair Display', serif;
}

.chatbot-title h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 2px;
    font-family: 'Inter', sans-serif;
    color: #050505;
}

.chatbot-status {
    font-size: 12px;
    color: #65676b;
    display: flex;
    align-items: center;
    gap: 5px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #31a24c;
    border-radius: 50%;
}

.chatbot-close {
    width: 36px;
    height: 36px;
    background: #f0f2f5;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 16px;
    color: #65676b;
}

.chatbot-close:hover {
    background: #e4e6eb;
}

.chatbot-messages {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
    background: var(--bg-white);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chatbot-messages::-webkit-scrollbar {
    width: 8px;
}

.chatbot-messages::-webkit-scrollbar-track {
    background: transparent;
}

.chatbot-messages::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

.bot-message,
.user-message {
    display: flex;
    gap: 8px;
    animation: messageSlide 0.3s ease;
}

@keyframes messageSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.user-message {
    flex-direction: row-reverse;
}

.message-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.message-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-message .message-avatar {
    background: linear-gradient(135deg, #00B2FF 0%, #006AFF 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: 14px;
}

.message-content {
    max-width: 70%;
    background: #f0f2f5;
    padding: 8px 12px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.5;
}

.user-message .message-content {
    background: linear-gradient(135deg, #00B2FF 0%, #006AFF 100%);
    color: var(--bg-white);
}

.message-content p {
    margin-bottom: 6px;
    font-family: 'Inter', sans-serif;
    color: #050505;
}

.user-message .message-content p {
    color: var(--bg-white);
}

.message-content p:last-child {
    margin-bottom: 0;
}

.message-content ul {
    margin: 6px 0;
    padding-left: 18px;
}

.message-content li {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 4px;
    font-family: 'Inter', sans-serif;
    color: #050505;
}

.user-message .message-content li {
    color: var(--bg-white);
}

.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 10px 12px;
}

.typing-dot {
    width: 8px;
    height: 8px;
    background: #90949c;
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

.typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 60%, 100% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-8px);
    }
}

.chatbot-suggestions {
    padding: 12px 16px;
    background: var(--bg-white);
    border-top: 1px solid #e4e6eb;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.suggestion-btn {
    padding: 8px 14px;
    background: var(--bg-white);
    border: 1px solid #ccd0d5;
    border-radius: 18px;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #050505;
    display: flex;
    align-items: center;
    gap: 6px;
}

.suggestion-btn i {
    font-size: 12px;
    color: #65676b;
}

.suggestion-btn:hover {
    background: #f0f2f5;
    border-color: #b0b3b8;
}

.chatbot-input-area {
    padding: 12px 16px;
    background: var(--bg-white);
    border-top: 1px solid #e4e6eb;
    display: flex;
    gap: 8px;
    align-items: center;
}

.chatbot-attach-btn {
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #0084ff;
    font-size: 20px;
}

.chatbot-attach-btn:hover {
    background: #f0f2f5;
}

#chatbotInput {
    flex: 1;
    padding: 10px 14px;
    border: none;
    background: #f0f2f5;
    border-radius: 20px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s ease;
    color: #050505;
}

#chatbotInput:focus {
    outline: none;
    background: #e4e6eb;
}

#chatbotInput::placeholder {
    color: #8a8d91;
}

.chatbot-send-btn {
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #0084ff;
}

.chatbot-send-btn:hover {
    background: #f0f2f5;
}

.chatbot-send-btn svg {
    fill: currentColor;
}

/* ========== FLOATING WHATSAPP BUTTON (RIGHT SIDE) ========== */
.floating-whatsapp {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background: #25D366;
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.floating-whatsapp i {
    font-size: 24px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.floating-whatsapp:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
    background: #20BA5A;
}

.whatsapp-text {
    font-weight: 600;
}

/* ========== PREMIUM HERO SECTION - TATA STYLE ========== */
.hero-section {
    position: relative;
    height: 90vh;
    min-height: 650px;
    max-height: 850px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
    padding-top: 85px;
}

/* Image Slideshow Background */
.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    transform: scale(1.1);
}

.hero-slide.active {
    opacity: 1;
    animation: kenBurns 20s ease-out infinite;
}

@keyframes kenBurns {
    0% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1.2);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    z-index: 1;
}

/* Animated Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold-accent);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 15s infinite ease-in-out;
    box-shadow: 0 0 10px var(--gold-accent);
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    left: 30%;
    animation-delay: 3s;
}

.particle:nth-child(3) {
    left: 50%;
    animation-delay: 6s;
}

.particle:nth-child(4) {
    left: 70%;
    animation-delay: 9s;
}

.particle:nth-child(5) {
    left: 90%;
    animation-delay: 12s;
}

@keyframes particleFloat {
    0% {
        bottom: -10%;
        opacity: 0;
        transform: translateX(0) scale(0);
    }
    10% {
        opacity: 1;
        transform: translateX(20px) scale(1);
    }
    90% {
        opacity: 1;
        transform: translateX(-20px) scale(1);
    }
    100% {
        bottom: 110%;
        opacity: 0;
        transform: translateX(0) scale(0);
    }
}

.hero-container {
    position: relative;
    z-index: 3;
    max-width: 1400px;
    width: 100%;
    padding: 0 60px;
    margin: 0 auto;
}

.hero-content {
    max-width: 1000px;
    text-align: left;
}

.hero-badge-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.3s;
}

.hero-badge-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold-accent));
}

.hero-badge {
    display: inline-block;
    padding: 10px 28px;
    background: transparent;
    border: 1px solid var(--gold-accent);
    color: var(--gold-accent);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-family: 'Arial', sans-serif;
    position: relative;
    overflow: hidden;
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.hero-title {
    font-size: 5.5rem;
    font-weight: 300;
    margin-bottom: 30px;
    line-height: 1.15;
    letter-spacing: -3px;
    color: var(--bg-white);
    text-align: left;
}

.title-line {
    display: block;
    overflow: hidden;
    text-align: left;
}

.title-word {
    display: inline-block;
    margin-right: 20px;
    opacity: 0;
    animation: slideInUp 1s ease forwards;
    position: relative;
}

.title-word:last-child {
    margin-right: 0;
}

.title-word::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    color: var(--gold-accent);
    overflow: hidden;
    transition: width 0.5s ease;
}

.title-word:hover::before {
    width: 100%;
}

.title-line:nth-child(1) .title-word:nth-child(1) { animation-delay: 0.5s; }
.title-line:nth-child(1) .title-word:nth-child(2) { animation-delay: 0.7s; }
.title-line:nth-child(2) .title-word:nth-child(1) { animation-delay: 0.9s; }
.title-line:nth-child(2) .title-word:nth-child(2) { animation-delay: 1.1s; }

.title-word.gold {
    color: var(--gold-accent);
    font-weight: 400;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 1.3s;
    text-align: left;
    max-width: 650px;
}

.subtitle-line {
    display: block;
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 1.5s;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 35px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.hero-cta:hover::before {
    left: 100%;
}

.hero-cta.primary {
    background: var(--gold-accent);
    color: #000;
    border: 2px solid var(--gold-accent);
}

.hero-cta.primary:hover {
    background: transparent;
    color: var(--gold-accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
}

.hero-cta.secondary {
    background: transparent;
    color: var(--bg-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-cta.secondary:hover {
    border-color: var(--bg-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.2);
}

.hero-stats-bar {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    animation: fadeInUp 1s ease forwards 1.7s;
    max-width: 850px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--gold-accent);
    letter-spacing: -1px;
}

.stat-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.hero-social-sidebar {
    position: fixed;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.social-sidebar-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(212, 175, 55, 0.5), transparent);
}

.sidebar-icon {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.sidebar-icon .icon-indicator {
    position: absolute;
    left: -15px;
    width: 8px;
    height: 8px;
    background: var(--gold-accent);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
    box-shadow: 0 0 10px var(--gold-accent);
}

.sidebar-icon.active .icon-indicator {
    opacity: 1;
    transform: scale(1);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 10px var(--gold-accent);
    }
    50% {
        box-shadow: 0 0 20px var(--gold-accent), 0 0 30px var(--gold-accent);
    }
}

.sidebar-icon::after {
    content: attr(data-platform);
    position: absolute;
    right: 60px;
    background: var(--gold-accent);
    color: #000;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.sidebar-icon:hover {
    border-color: var(--gold-accent);
    background: var(--gold-accent);
    color: #000;
    transform: scale(1.15);
}

.sidebar-icon:hover::after {
    opacity: 1;
    right: 70px;
}

.sidebar-icon.active {
    border-color: var(--gold-accent);
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold-accent);
}

/* Slideshow Navigation */
.hero-slide-nav {
    position: absolute;
    bottom: 100px;
    right: 60px;
    z-index: 4;
    display: flex;
    gap: 15px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 2s;
}

.slide-nav-btn {
    width: 50px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.slide-nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gold-accent);
    transition: width 0.3s ease;
}

.slide-nav-btn.active::before {
    width: 100%;
    animation: slideProgress 8s linear;
}

@keyframes slideProgress {
    from { width: 0; }
    to { width: 100%; }
}

.slide-nav-btn:hover {
    background: rgba(255, 255, 255, 0.5);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    z-index: 4;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 2s;
}

.scroll-text {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
}

.scroll-arrow {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(212, 175, 55, 0.5);
    border-radius: 20px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 8px;
}

.scroll-arrow i {
    color: var(--gold-accent);
    font-size: 12px;
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(10px);
        opacity: 0.5;
    }
}

.hero-scroll-indicator:hover .scroll-arrow {
    border-color: var(--gold-accent);
}

/* ========== WOODSPA PRODUCTS SECTION ========== */
.woodspa-products-section {
    padding: 80px 0 100px;
    background: #ffffff;
}

.products-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Main Header */
.products-main-header {
    text-align: center;
    margin-bottom: 80px;
}

.products-label {
    font-size: 14px;
    font-weight: 400;
    color: #666;
    margin-bottom: 15px;
    letter-spacing: 1px;
    font-family: 'Inter', sans-serif;
}

.products-main-title {
    font-size: 2.8rem;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.5px;
}

.products-main-subtitle {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
}

/* Category Block */
.product-category-block {
    margin-bottom: 80px;
}

.category-header {
    margin-bottom: 30px;
}

.category-title {
    font-size: 2rem;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.5px;
}

.category-description {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    max-width: 900px;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
}

/* Gallery */
.category-gallery {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0 20px;
    scrollbar-width: thin;
    scrollbar-color: #ddd #f5f5f5;
}

.category-gallery::-webkit-scrollbar {
    height: 8px;
}

.category-gallery::-webkit-scrollbar-track {
    background: #f5f5f5;
    border-radius: 10px;
}

.category-gallery::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 10px;
}

.category-gallery::-webkit-scrollbar-thumb:hover {
    background: #ccc;
}

.gallery-item {
    position: relative;
    flex: 0 0 350px;
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-enquiry-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.gallery-item:hover .gallery-enquiry-btn {
    opacity: 1;
    transform: scale(1);
}

.gallery-enquiry-btn:hover {
    background: #1a1a1a;
    color: #fff;
    transform: scale(1.1);
}

.gallery-enquiry-btn i {
    font-size: 16px;
    color: #1a1a1a;
}

.gallery-enquiry-btn:hover i {
    color: #fff;
}

/* Product Enquiry Modal */
.product-enquiry-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.product-enquiry-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.product-modal-content {
    background: var(--bg-white);
    border-radius: 24px;
    max-width: 550px;
    width: 90%;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.product-enquiry-modal.active .product-modal-content {
    transform: scale(1);
}

.product-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
    color: var(--text-dark);
    z-index: 10;
}

.product-modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

.product-modal-header {
    text-align: center;
    padding: 50px 40px 30px;
    border-bottom: 1px solid var(--border-color);
}

.product-modal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold-accent), #f4d03f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 35px;
    color: #000;
}

.product-modal-header h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
}

.selected-product {
    font-size: 15px;
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
}

.selected-product span {
    color: var(--gold-accent);
    font-weight: 600;
}

.product-enquiry-form {
    padding: 40px;
}

.product-enquiry-form .form-group {
    margin-bottom: 20px;
}

.product-enquiry-form .form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-enquiry-form .form-group label i {
    color: var(--gold-accent);
    font-size: 14px;
}

.product-enquiry-form input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    transition: all 0.3s ease;
    background: var(--bg-white);
}

.product-enquiry-form input:focus {
    outline: none;
    border-color: var(--gold-accent);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.product-submit-btn {
    width: 100%;
    padding: 16px 30px;
    background: #25D366;
    color: var(--bg-white);
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

.product-submit-btn:hover {
    background: #20BA5A;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.product-submit-btn i {
    font-size: 18px;
}

.categories-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.categories-carousel::-webkit-scrollbar {
    display: none;
}

.category-card {
    flex: 0 0 280px;
    background: var(--bg-white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-accent), #f4d03f);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.25);
    border-color: var(--gold-accent);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #fff8e7 0%, #fff4d6 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
    color: var(--gold-accent);
    transition: all 0.4s ease;
}

.category-card:hover .category-icon {
    background: linear-gradient(135deg, var(--gold-accent), #f4d03f);
    color: #000;
    transform: scale(1.1) rotate(5deg);
}

.category-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-family: 'Playfair Display', serif;
}

.category-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 25px;
    font-family: 'Inter', sans-serif;
}

.category-btn {
    padding: 12px 30px;
    background: transparent;
    border: 2px solid var(--gold-accent);
    color: var(--gold-accent);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.category-card:hover .category-btn {
    background: linear-gradient(135deg, var(--gold-accent), #f4d03f);
    color: #000;
    border-color: transparent;
}

/* ========== CATEGORY ENQUIRY MODAL ========== */
.category-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.category-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.category-modal-content {
    background: var(--bg-white);
    border-radius: 24px;
    max-width: 500px;
    width: 90%;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.category-modal.active .category-modal-content {
    transform: scale(1);
}

.category-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
    color: var(--text-dark);
    z-index: 10;
}

.category-modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

.category-modal-header {
    text-align: center;
    padding: 50px 40px 30px;
    border-bottom: 1px solid var(--border-color);
}

.category-modal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold-accent), #f4d03f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 35px;
    color: #000;
}

.category-modal-header h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
}

.selected-category {
    font-size: 15px;
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
}

.selected-category span {
    color: var(--gold-accent);
    font-weight: 600;
}

.category-form {
    padding: 40px;
}

.category-form .form-group {
    margin-bottom: 20px;
}

.category-form .form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-form .form-group label i {
    color: var(--gold-accent);
    font-size: 14px;
}

.category-form input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    transition: all 0.3s ease;
    background: var(--bg-white);
}

.category-form input:focus {
    outline: none;
    border-color: var(--gold-accent);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.category-submit-btn {
    width: 100%;
    padding: 16px 30px;
    background: #25D366;
    color: var(--bg-white);
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

.category-submit-btn:hover {
    background: #20BA5A;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.category-submit-btn i {
    font-size: 20px;
}


.section-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
}

/* ========== SECTION BADGE WRAPPER ========== */
.section-badge-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.badge-line {
    width: 100px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold-accent), transparent);
}

.badge-line.gradient-ig {
    background: linear-gradient(to right, transparent, #dc2743, transparent);
}

.badge-line.gradient-li {
    background: linear-gradient(to right, transparent, var(--linkedin-color), transparent);
}

.badge-line.gradient-yt {
    background: linear-gradient(to right, transparent, var(--youtube-color), transparent);
}

.section-footer {
    text-align: center;
    margin-top: 80px;
}

/* ========== FACEBOOK SECTION - ELITE MAGAZINE STYLE ========== */
.facebook-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    position: relative;
}

.facebook-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.02), transparent);
}

.section-header-fb {
    text-align: center;
    margin-bottom: 70px;
}

.fb-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 32px;
    background: var(--facebook-color);
    color: var(--bg-white);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 8px 30px rgba(24, 119, 242, 0.3);
}

.section-title-fb {
    font-size: 4rem;
    font-weight: 300;
    margin: 30px 0 20px;
    letter-spacing: -2px;
    font-family: 'Playfair Display', serif;
    line-height: 1.1;
}

.section-title-fb .title-main {
    display: block;
    color: var(--text-dark);
}

.section-title-fb .title-accent {
    display: block;
    color: var(--facebook-color);
    font-weight: 400;
}

.section-subtitle-fb {
    font-size: 1.15rem;
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

.fb-featured-post {
    margin-bottom: 60px;
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

.fb-featured-post:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.fb-featured-card {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    min-height: 500px;
}

.fb-featured-image {
    position: relative;
    overflow: hidden;
}

.fb-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.fb-featured-card:hover .fb-featured-image img {
    transform: scale(1.08);
}

.fb-featured-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fb-featured-label {
    display: inline-block;
    padding: 6px 18px;
    background: var(--facebook-color);
    color: var(--bg-white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    font-family: 'Inter', sans-serif;
    border-radius: 4px;
}

.fb-featured-text {
    font-size: 1.6rem;
    line-height: 1.7;
    margin-bottom: 30px;
    font-weight: 300;
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
}

.fb-featured-meta {
    display: flex;
    gap: 30px;
    font-size: 14px;
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
}

.fb-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.fb-post-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.fb-post-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
}

.fb-post-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.fb-post-card:hover .fb-post-image {
    transform: scale(1.05);
}

.fb-post-content {
    padding: 32px;
}

.fb-post-text {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
    color: var(--text-medium);
}

.fb-post-meta {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
}

.fb-view-more {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 45px;
    background: var(--facebook-color);
    color: var(--bg-white);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.4s ease;
    font-family: 'Inter', sans-serif;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.3);
}

.fb-view-more:hover {
    background: #1565c0;
    gap: 20px;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(24, 119, 242, 0.4);
}

/* ========== INSTAGRAM SECTION - ELITE GALLERY ========== */
.instagram-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #fdf6f0 0%, #fff5f8 50%, #fff 100%);
    position: relative;
    overflow: hidden;
}

.instagram-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(220, 39, 67, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.section-header-ig {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 1;
}

.ig-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: var(--bg-white);
    transform: rotate(-5deg);
    transition: transform 0.5s ease;
    box-shadow: 0 15px 50px rgba(220, 39, 67, 0.3);
}

.ig-icon-wrapper:hover {
    transform: rotate(0deg) scale(1.1);
}

.section-title-ig {
    font-size: 4rem;
    font-weight: 300;
    margin: 35px 0 20px;
    letter-spacing: -2px;
    font-family: 'Playfair Display', serif;
    line-height: 1.1;
}

.section-title-ig .title-main {
    display: block;
    color: var(--text-dark);
}

.section-title-ig .title-accent {
    display: block;
    background: linear-gradient(45deg, #f09433 0%, #dc2743 50%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 400;
}

.section-subtitle-ig {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.ig-handle {
    font-size: 1.5rem;
    background: linear-gradient(45deg, #f09433 0%, #dc2743 50%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

.ig-tagline {
    font-size: 1.1rem;
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    max-width: 550px;
}

/* Instagram Carousel */
.ig-carousel-wrapper {
    position: relative;
    margin-bottom: 60px;
}

.ig-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.ig-carousel::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.ig-post-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    flex: 0 0 350px;
    height: 350px;
}

.ig-post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(220, 39, 67, 0.3);
}

.ig-post-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.ig-post-card:hover .ig-post-image {
    transform: scale(1.12);
}

.ig-post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(240, 148, 51, 0.95) 0%, rgba(188, 24, 136, 0.95) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    color: var(--bg-white);
    padding: 25px;
}

.ig-post-card:hover .ig-post-overlay {
    opacity: 1;
}

.ig-post-text {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.ig-post-stats {
    display: flex;
    gap: 25px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

/* Navigation Buttons */
.ig-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--bg-white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    color: var(--text-dark);
    font-size: 18px;
}

.ig-nav-btn:hover {
    background: linear-gradient(45deg, #f09433 0%, #dc2743 50%, #bc1888 100%);
    color: var(--bg-white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(220, 39, 67, 0.4);
}

.ig-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.ig-nav-btn:disabled:hover {
    background: var(--bg-white);
    color: var(--text-dark);
    transform: translateY(-50%);
}

.ig-prev {
    left: -25px;
}

.ig-next {
    right: -25px;
}

.ig-stats-bar {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin: 60px 0 50px;
    padding: 50px;
    background: linear-gradient(135deg, rgba(240, 148, 51, 0.12) 0%, rgba(188, 24, 136, 0.12) 100%);
    border-radius: 25px;
    box-shadow: 0 8px 30px rgba(220, 39, 67, 0.1);
}

.ig-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.ig-stat .stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #f09433 0%, #dc2743 50%, #bc1888 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.ig-stat .stat-icon i {
    font-size: 28px;
    color: var(--bg-white);
}

.ig-stat-number {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--text-dark);
    letter-spacing: -1px;
    font-family: 'Playfair Display', serif;
}

.ig-stat-label {
    font-size: 13px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.ig-view-more {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 45px;
    background: linear-gradient(45deg, #f09433 0%, #dc2743 50%, #bc1888 100%);
    color: var(--bg-white);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s ease;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 8px 25px rgba(220, 39, 67, 0.3);
}

.ig-view-more:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(220, 39, 67, 0.5);
    gap: 20px;
}

/* ========== LINKEDIN SECTION - ELITE CORPORATE ========== */
.linkedin-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f3f6f8 0%, #e8eef2 100%);
    position: relative;
}

.section-header-li {
    margin-bottom: 70px;
}

.li-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 32px;
    background: var(--linkedin-color);
    color: var(--bg-white);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 8px 30px rgba(0, 119, 181, 0.3);
}

.li-brand {
    display: flex;
    align-items: center;
    gap: 35px;
    padding: 50px;
    background: var(--bg-white);
    border-left: 5px solid var(--linkedin-color);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    margin-top: 30px;
}

.li-icon {
    width: 85px;
    height: 85px;
    background: var(--linkedin-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    color: var(--bg-white);
    flex-shrink: 0;
}

.section-title-li {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 12px;
    font-family: 'Playfair Display', serif;
    letter-spacing: -1px;
}

.section-title-li .title-main {
    color: var(--text-dark);
}

.section-title-li .title-accent {
    color: var(--linkedin-color);
    font-weight: 400;
}

.section-subtitle-li {
    font-size: 1.05rem;
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

.li-timeline {
    position: relative;
    padding-left: 70px;
    margin-bottom: 60px;
}

.li-timeline::before {
    content: '';
    position: absolute;
    left: 25px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--linkedin-color), transparent);
}

.li-post-card {
    position: relative;
    background: var(--bg-white);
    padding: 40px;
    margin-bottom: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.li-post-card::before {
    content: '';
    position: absolute;
    left: -52px;
    top: 50px;
    width: 16px;
    height: 16px;
    background: var(--linkedin-color);
    border-radius: 50%;
    border: 4px solid #f3f6f8;
    box-shadow: 0 0 0 2px var(--linkedin-color);
}

.li-post-card:hover {
    transform: translateX(12px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.li-post-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

.li-post-avatar {
    width: 60px;
    height: 60px;
    background: var(--linkedin-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--bg-white);
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    flex-shrink: 0;
}

.li-post-author {
    flex: 1;
}

.li-post-author h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 6px;
    font-family: 'Inter', sans-serif;
}

.li-post-author p {
    font-size: 0.95rem;
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
}

.li-post-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 25px;
}

.li-post-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--text-medium);
    font-family: 'Inter', sans-serif;
}

.li-post-meta {
    display: flex;
    gap: 35px;
    font-size: 14px;
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
}

.li-view-more {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 45px;
    background: var(--linkedin-color);
    color: var(--bg-white);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s ease;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 8px 25px rgba(0, 119, 181, 0.3);
}

.li-view-more:hover {
    background: #005885;
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 119, 181, 0.4);
    gap: 20px;
}

/* ========== YOUTUBE SECTION - ELITE CINEMA EXPERIENCE ========== */
.youtube-section {
    padding: 100px 0;
    background: #0a0a0a;
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.youtube-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -8%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.section-header-yt {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 1;
}

.yt-brand {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 20px 45px;
    background: var(--youtube-color);
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(255, 0, 0, 0.4);
}

.yt-brand i {
    font-size: 38px;
}

.yt-brand h2 {
    font-size: 1.9rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.section-title-yt {
    font-size: 4rem;
    font-weight: 300;
    margin: 35px 0 20px;
    letter-spacing: -2px;
    font-family: 'Playfair Display', serif;
    line-height: 1.1;
}

.section-title-yt .title-main {
    display: block;
    color: var(--bg-white);
}

.section-title-yt .title-accent {
    display: block;
    color: var(--youtube-color);
    font-weight: 400;
}

.section-subtitle-yt {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.85;
    font-family: 'Inter', sans-serif;
    max-width: 650px;
    margin: 0 auto;
}

.yt-featured-video {
    margin-bottom: 60px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(255, 0, 0, 0.4);
    transition: all 0.5s ease;
}

.yt-featured-video:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 90px rgba(255, 0, 0, 0.5);
}

.yt-featured-card {
    position: relative;
    height: 600px;
    cursor: pointer;
}

.yt-featured-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.yt-featured-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 50px;
}

.yt-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: var(--youtube-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 8px;
    font-size: 42px;
    color: var(--bg-white);
    transition: all 0.4s ease;
    box-shadow: 0 8px 35px rgba(255, 0, 0, 0.5);
}

.yt-featured-card:hover .yt-play-button {
    transform: translate(-50%, -50%) scale(1.2);
    box-shadow: 0 12px 50px rgba(255, 0, 0, 0.8);
}

.yt-featured-duration {
    position: absolute;
    top: 35px;
    right: 35px;
    padding: 8px 18px;
    background: rgba(0, 0, 0, 0.95);
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}

.yt-featured-title {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 18px;
    line-height: 1.3;
    font-family: 'Playfair Display', serif;
}

.yt-featured-stats {
    display: flex;
    gap: 35px;
    font-size: 15px;
    opacity: 0.85;
    font-family: 'Inter', sans-serif;
}

.yt-video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-bottom: 60px;
}

.yt-video-card {
    background: #1a1a1a;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.yt-video-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 18px 45px rgba(255, 0, 0, 0.4);
}

.yt-video-thumbnail {
    position: relative;
    height: 230px;
}

.yt-video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.yt-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 0, 0, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 4px;
    font-size: 24px;
    color: var(--bg-white);
    transition: all 0.3s ease;
}

.yt-video-card:hover .yt-video-play {
    transform: translate(-50%, -50%) scale(1.25);
}

.yt-video-duration {
    position: absolute;
    bottom: 12px;
    right: 12px;
    padding: 5px 10px;
    background: rgba(0, 0, 0, 0.95);
    border-radius: 5px;
    font-size: 13px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}

.yt-video-content {
    padding: 25px;
}

.yt-video-title {
    font-size: 1.15rem;
    font-weight: 400;
    margin-bottom: 18px;
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
}

.yt-video-meta {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    opacity: 0.7;
    font-family: 'Inter', sans-serif;
}

.yt-subscribe-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 50px;
    background: var(--youtube-color);
    color: var(--bg-white);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s ease;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
}

.yt-subscribe-btn:hover {
    background: #cc0000;
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 0, 0, 0.6);
    gap: 20px;
}

/* ========== ELITE FOOTER CTA ========== */
.footer-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 50%, #1a1a1a 100%);
    text-align: center;
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.18;
}

.cta-shape.shape-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--gold-accent), #f4d03f);
    top: -15%;
    left: -8%;
    animation: float 25s infinite ease-in-out;
}

.cta-shape.shape-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--gold-accent), #f4d03f);
    bottom: -15%;
    right: -8%;
    animation: float 30s infinite ease-in-out reverse;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 950px;
    margin: 0 auto;
    padding: 0 60px;
}

.cta-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-bottom: 40px;
}

.cta-badge .badge-line {
    width: 100px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold-accent), transparent);
}

.cta-badge span {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-accent);
    font-family: 'Inter', sans-serif;
}

.cta-title {
    font-size: 3.8rem;
    font-weight: 300;
    margin-bottom: 25px;
    letter-spacing: -2px;
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

.cta-title .title-line {
    display: block;
}

.cta-title .accent {
    color: var(--gold-accent);
    font-weight: 400;
}

.cta-description {
    font-size: 1.15rem;
    opacity: 0.85;
    margin-bottom: 50px;
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.cta-social-links {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-link {
    width: 150px;
    height: 150px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 42px;
    color: var(--bg-white);
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.cta-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-link:hover::before {
    opacity: 1;
}

.link-label {
    font-size: 14px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    letter-spacing: 1px;
}

.cta-link.facebook {
    background: var(--facebook-color);
    box-shadow: 0 12px 40px rgba(24, 119, 242, 0.4);
}

.cta-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #dc2743 50%, #bc1888 100%);
    box-shadow: 0 12px 40px rgba(220, 39, 67, 0.4);
}

.cta-link.linkedin {
    background: var(--linkedin-color);
    box-shadow: 0 12px 40px rgba(0, 119, 181, 0.4);
}

.cta-link.youtube {
    background: var(--youtube-color);
    box-shadow: 0 12px 40px rgba(255, 0, 0, 0.4);
}

.cta-link:hover {
    transform: translateY(-12px) scale(1.05);
}

.cta-link.facebook:hover {
    box-shadow: 0 20px 60px rgba(24, 119, 242, 0.6);
}

.cta-link.instagram:hover {
    box-shadow: 0 20px 60px rgba(220, 39, 67, 0.6);
}

.cta-link.linkedin:hover {
    box-shadow: 0 20px 60px rgba(0, 119, 181, 0.6);
}

.cta-link.youtube:hover {
    box-shadow: 0 20px 60px rgba(255, 0, 0, 0.6);
}

/* ========== PREMIUM FOOTER ========== */
.premium-footer {
    background: #000;
    padding: 50px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

/* ========== CONTACT FORM SECTION ========== */
.contact-form-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    position: relative;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.02), transparent);
}

.contact-form-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-form-header {
    text-align: center;
    margin-bottom: 70px;
}

.contact-badge {
    display: inline-block;
    padding: 10px 28px;
    background: transparent;
    border: 1px solid var(--gold-accent);
    color: var(--gold-accent);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

.contact-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    animation: shimmer 3s infinite;
}

.contact-form-title {
    font-size: 4rem;
    font-weight: 300;
    margin: 35px 0 20px;
    letter-spacing: -2px;
    font-family: 'Playfair Display', serif;
    line-height: 1.1;
}

.contact-form-title .title-main {
    display: block;
    color: var(--text-dark);
}

.contact-form-title .title-accent {
    display: block;
    color: var(--gold-accent);
    font-weight: 400;
}

.contact-form-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card-item {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
    position: relative;
}

.info-card-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--gold-accent), #f4d03f);
    transform: scaleY(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: bottom;
}

.info-card-item:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}

.info-card-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border-color: rgba(212, 175, 55, 0.2);
}

.info-card-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px 32px;
}

.info-icon-wrapper {
    position: relative;
    flex-shrink: 0;
}

.info-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #fff8e7 0%, #fff4d6 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--gold-accent);
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--gold-accent), #f4d03f);
    border-radius: 14px;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.info-card-item:hover .info-icon {
    transform: scale(1.05);
    color: #000;
}

.info-card-item:hover .info-icon-bg {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.info-text {
    flex: 1;
    padding-top: 4px;
}

.info-text h4 {
    font-size: 13px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.info-text a,
.info-text .info-address {
    font-size: 19px;
    color: #111827;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
    transition: all 0.3s ease;
    line-height: 1.4;
}

.info-text a:hover {
    color: var(--gold-accent);
    transform: translateX(2px);
}

.info-description {
    font-size: 14px;
    color: #9ca3af;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    margin-top: 4px;
}

.info-card-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.info-card-item:first-child {
    padding-top: 0;
}

.contact-form-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.4s ease;
}

.contact-form-card:hover {
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
}

.main-contact-form {
    display: block;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.main-contact-form .form-group {
    margin-bottom: 25px;
}

.main-contact-form .form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-contact-form .form-group label i {
    font-size: 14px;
    color: var(--gold-accent);
}

.main-contact-form input,
.main-contact-form textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background: var(--bg-white);
    transition: all 0.3s ease;
}

.main-contact-form input::placeholder,
.main-contact-form textarea::placeholder {
    color: var(--text-light);
}

.main-contact-form input:focus,
.main-contact-form textarea:focus {
    outline: none;
    border-color: var(--gold-accent);
    background: var(--bg-cream);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.main-contact-form textarea {
    resize: vertical;
    min-height: 140px;
}

.main-submit-btn {
    width: 100%;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--gold-accent), #f4d03f);
    color: #000;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
}

.main-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.main-submit-btn:hover::before {
    left: 100%;
}

.main-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.main-submit-btn i {
    font-size: 18px;
}

.main-success-message {
    display: none;
    text-align: center;
    padding: 60px 40px;
    animation: fadeInScale 0.5s ease;
}

.main-success-message.active {
    display: block;
}

.main-success-message .success-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 45px;
    color: var(--bg-white);
    animation: successPulse 0.6s ease;
}

.main-success-message h4 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-family: 'Playfair Display', serif;
}

.main-success-message p {
    font-size: 1.05rem;
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
}

.footer-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo .logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--gold-accent), #f4d03f);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #000;
    font-family: 'Playfair Display', serif;
}

.footer-logo .logo-text {
    font-size: 24px;
    font-weight: 600;
    color: var(--bg-white);
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
}

.footer-tagline {
    font-size: 14px;
    color: var(--gold-accent);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.footer-info {
    text-align: right;
}

.footer-info p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Inter', sans-serif;
    margin-bottom: 6px;
}

.footer-info p:last-child {
    margin-bottom: 0;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1200px) {
    .nav-container,
    .section-container,
    .footer-container {
        padding-left: 40px;
        padding-right: 40px;
    }
    
    .hero-title {
        font-size: 5rem;
    }
    
    .section-title-fb,
    .section-title-ig,
    .section-title-yt,
    .cta-title {
        font-size: 4rem;
    }
    
    .hero-social-sidebar {
        right: 30px;
    }
    
    .fb-featured-card {
        grid-template-columns: 1fr;
    }
    
    .fb-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ig-post-card {
        flex: 0 0 300px;
        height: 300px;
    }
    
    .ig-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .ig-prev {
        left: -22px;
    }
    
    .ig-next {
        right: -22px;
    }
    
    .yt-video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-social-links {
        gap: 20px;
    }
    
    .cta-link {
        width: 150px;
        height: 150px;
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .premium-nav {
        padding: 15px 0;
    }
    
    .nav-container {
        padding: 0 20px;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .nav-links {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 20px;
    }
    
    .nav-link {
        font-size: 13px;
    }
    
    /* WoodSpa Products Responsive */
    .products-container {
        padding: 0 20px;
    }
    
    .products-main-header {
        margin-bottom: 60px;
    }
    
    .products-main-title {
        font-size: 2rem;
    }
    
    .products-main-subtitle {
        font-size: 15px;
    }
    
    .product-category-block {
        margin-bottom: 60px;
    }
    
    .category-title {
        font-size: 1.6rem;
    }
    
    .category-description {
        font-size: 14px;
    }
    
    .gallery-item {
        flex: 0 0 280px;
        height: 200px;
    }
    
    .gallery-enquiry-btn {
        width: 40px;
        height: 40px;
        bottom: 12px;
        right: 12px;
    }
    
    .gallery-enquiry-btn i {
        font-size: 14px;
    }
    
    /* Floating Buttons Mobile */
    .floating-chatbot {
        left: 15px;
        bottom: 15px;
    }
    
    .chatbot-btn {
        padding: 12px 18px;
        font-size: 14px;
    }
    
    .chatbot-btn span {
        display: none;
    }
    
    .chatbot-btn svg {
        width: 24px;
        height: 24px;
    }
    
    .chatbot-modal {
        left: 10px;
        right: 10px;
        bottom: 80px;
    }
    
    .chatbot-container {
        width: 100%;
        height: 500px;
    }
    
    .chatbot-suggestions {
        flex-direction: column;
    }
    
    .suggestion-btn {
        width: 100%;
        justify-content: center;
    }
    
    .floating-whatsapp {
        right: 15px;
        bottom: 15px;
        padding: 14px 20px;
        font-size: 14px;
    }
    
    .whatsapp-text {
        display: none;
    }
    
    .floating-whatsapp i {
        font-size: 26px;
        margin: 0;
    }
    
    .modal-content {
        width: 95%;
        max-width: none;
    }
    
    .modal-header {
        padding: 40px 25px 25px;
    }
    
    .modal-body {
        padding: 25px;
    }
    
    .contact-item {
        padding: 15px;
    }
    
    .hero-section {
        margin-top: 120px;
        min-height: 600px;
    }
    
    .hero-container {
        padding: 0 30px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .title-word {
        margin-right: 10px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-cta {
        justify-content: center;
        width: 100%;
    }
    
    .hero-stats-bar {
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-social-sidebar {
        display: none;
    }
    
    .hero-slide-nav {
        right: 20px;
        bottom: 60px;
    }
    
    .facebook-section,
    .instagram-section,
    .linkedin-section,
    .youtube-section {
        padding: 100px 0;
    }
    
    .section-container {
        padding: 0 20px;
    }
    
    .section-title-fb,
    .section-title-ig,
    .section-title-li,
    .section-title-yt {
        font-size: 2.5rem;
    }
    
    .section-subtitle-fb,
    .section-subtitle-ig,
    .section-subtitle-li,
    .section-subtitle-yt {
        font-size: 1rem;
    }
    
    .fb-posts-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .ig-post-card {
        flex: 0 0 280px;
        height: 280px;
    }
    
    .ig-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .ig-prev {
        left: 5px;
    }
    
    .ig-next {
        right: 5px;
    }
    
    .ig-stats-bar {
        gap: 30px;
        padding: 40px 20px;
        flex-direction: column;
    }
    
    .li-timeline {
        padding-left: 30px;
    }
    
    .li-timeline::before {
        left: 10px;
    }
    
    .li-post-card::before {
        left: -28px;
    }
    
    .li-brand {
        flex-direction: column;
        padding: 40px 30px;
        text-align: center;
    }
    
    .yt-featured-card {
        height: 400px;
    }
    
    .fb-featured-content,
    .yt-featured-overlay {
        padding: 30px;
    }
    
    .footer-cta {
        padding: 100px 0;
    }
    
    .cta-title {
        font-size: 3rem;
    }
    
    .cta-description {
        font-size: 1.1rem;
    }
    
    .cta-social-links {
        gap: 15px;
    }
    
    .cta-link {
        width: 120px;
        height: 120px;
        font-size: 35px;
    }
    
    .link-label {
        font-size: 14px;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-info {
        text-align: center;
    }
    
    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info-cards {
        order: 2;
    }
    
    .contact-form-card {
        order: 1;
        padding: 40px 30px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-stats-bar {
        gap: 15px;
    }
    
    .stat-item {
        flex: 1 1 40%;
    }
    
    .section-title-fb,
    .section-title-ig,
    .section-title-li,
    .section-title-yt,
    .cta-title {
        font-size: 2rem;
    }
    
    /* WoodSpa Products Mobile */
    .products-container {
        padding: 0 15px;
    }
    
    .products-main-title {
        font-size: 1.6rem;
    }
    
    .products-main-subtitle {
        font-size: 14px;
    }
    
    .category-title {
        font-size: 1.4rem;
    }
    
    .category-description {
        font-size: 13px;
    }
    
    .gallery-item {
        flex: 0 0 250px;
        height: 180px;
    }
    
    .gallery-enquiry-btn {
        width: 36px;
        height: 36px;
        bottom: 10px;
        right: 10px;
    }
    
    .gallery-enquiry-btn i {
        font-size: 13px;
    }
    
    .product-modal-content {
        width: 95%;
    }
    
    .product-modal-header {
        padding: 40px 20px 25px;
    }
    
    .product-modal-header h3 {
        font-size: 1.4rem;
    }
    
    .product-modal-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .product-enquiry-form {
        padding: 30px 20px;
    }
    
    .cta-social-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-link {
        width: 100px;
        height: 100px;
        font-size: 30px;
    }
    
    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info-cards {
        gap: 16px;
    }
    
    .info-card-content {
        padding: 20px 24px;
    }
    
    .info-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    
    .info-icon-bg {
        width: 48px;
        height: 48px;
    }
    
    .info-text a,
    .info-text .info-address {
        font-size: 17px;
    }
    
    .contact-form-card {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-title {
        font-size: 2rem;
    }
}
