/* ================================================
   Pradeep SMART Investments - Website Stylesheet
   Domain: pradeepsmartinvests.com
   ================================================ */

/* -------------------- CSS Variables -------------------- */
:root {
    /* Primary Colors - Professional Blue & Gold */
    --primary-dark: #1e3a5f;
    --primary: #2563eb;
    --primary-light: #3b82f6;
    --secondary: #d4af37;
    --secondary-light: #f5d76e;
    
    /* Neutral Colors */
    --white: #ffffff;
    --off-white: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    
    /* Semantic Colors */
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    
    /* Typography */
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;
    
    /* Spacing */
    --section-padding: 100px;
    --container-width: 1200px;
    
    /* Effects */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    --radius-sm: 4px;
    --radius: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    --transition: all 0.3s ease;
    --transition-fast: all 0.15s ease;
}

/* -------------------- Reset & Base -------------------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.3;
    color: var(--gray-900);
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* -------------------- Utility Classes -------------------- */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-tag {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--gray-900);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-500);
    max-width: 600px;
}

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

.section-header .section-subtitle {
    margin: 0 auto;
}

.section-header.light .section-tag,
.section-header.light .section-title,
.section-header.light .section-subtitle {
    color: var(--white);
}

.section-header.light .section-subtitle {
    opacity: 0.9;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-dark);
}

.btn-full {
    width: 100%;
}

/* -------------------- Navigation -------------------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: var(--white);
    padding: 12px 0;
    box-shadow: var(--shadow);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: baseline;
    gap: 4px;
    font-weight: 600;
}

.logo-text {
    font-size: 1.5rem;
    color: var(--white);
}

.logo-highlight {
    font-size: 1.5rem;
    color: var(--secondary);
    font-weight: 700;
}

.logo-sub {
    font-size: 0.875rem;
    color: var(--white);
    opacity: 0.9;
}

.navbar.scrolled .logo-text,
.navbar.scrolled .logo-sub {
    color: var(--primary-dark);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white);
    position: relative;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
}

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

.navbar.scrolled .nav-link {
    color: var(--gray-700);
}

.navbar.scrolled .nav-link:hover {
    color: var(--primary);
}

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

.nav-dropdown .nav-link {
    display: flex;
    align-items: center;
}

.nav-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    padding: 12px 0;
    border-radius: var(--radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
}

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

.nav-dropdown .dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.nav-dropdown .dropdown-menu li a:hover {
    background: var(--gray-100);
    color: var(--primary);
    padding-left: 24px;
}

.nav-link.cta-btn {
    padding: 10px 24px;
    background: var(--secondary);
    color: var(--gray-900);
    border-radius: var(--radius);
}

.nav-link.cta-btn::after {
    display: none;
}

.nav-link.cta-btn:hover {
    background: var(--secondary-light);
    transform: translateY(-2px);
}

/* Language Toggle - Beside Logo (Compact) */
.lang-toggle-nav {
    display: flex;
    align-items: center;
    gap: 2px;
    background: rgba(255, 255, 255, 0.95);
    padding: 3px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.06);
    margin-left: 15px;
    margin-right: 15px;
    position: relative;
    flex-shrink: 0;
}

/* Blink animation - more visible */
.lang-toggle-nav.first-visit {
    animation: langBlink 0.5s ease-in-out 8;
}

.lang-toggle-nav.first-visit .lang-btn-nav {
    animation: textBlink 0.5s ease-in-out 8;
}

@keyframes langBlink {
    0%, 100% { 
        background: rgba(255, 255, 255, 0.95);
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    50% { 
        background: linear-gradient(135deg, #d4af37 0%, #f5d76e 100%);
        transform: scale(1.15);
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.7);
    }
}

@keyframes textBlink {
    0%, 100% { 
        color: var(--text-light);
    }
    50% { 
        color: #1e3a5f;
        font-weight: 700;
    }
}

/* Tooltip */
.lang-toggle-nav::after {
    content: 'భాష ఎంచుకోండి';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 8px;
    background: var(--primary);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.65rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.lang-toggle-nav::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-bottom-color: var(--primary);
    margin-top: -2px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lang-toggle-nav:hover::after,
.lang-toggle-nav:hover::before {
    opacity: 1;
    visibility: visible;
}

/* Show tooltip on page load */
.lang-toggle-nav.show-tooltip::after,
.lang-toggle-nav.show-tooltip::before {
    opacity: 1;
    visibility: visible;
}

.lang-btn-nav {
    padding: 5px 10px;
    border: none;
    background: transparent;
    color: var(--text-light);
    font-size: 0.7rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 16px;
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.lang-btn-nav.active {
    background: var(--primary);
    color: white;
    box-shadow: 0 1px 4px rgba(20, 83, 136, 0.25);
}

.lang-btn-nav:hover:not(.active) {
    background: var(--gray-100);
    color: var(--primary);
}

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
    flex-shrink: 0;
}

.navbar.scrolled .nav-toggle {
    background: transparent;
    border: none;
}

.hamburger {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    position: relative;
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger::before {
    top: -7px;
}

.hamburger::after {
    bottom: -7px;
}

/* Hamburger animation when menu is open */
.nav-toggle.active .hamburger {
    background: transparent;
}

.nav-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
    background: var(--gray-800);
}

.nav-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
    background: var(--gray-800);
}

.navbar.scrolled .hamburger,
.navbar.scrolled .hamburger::before,
.navbar.scrolled .hamburger::after {
    background: var(--gray-800);
}

/* -------------------- Hero Section -------------------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #0f2744 100%);
    overflow: hidden;
    padding-bottom: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 120px 0 100px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    color: var(--secondary);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-title span {
    color: var(--secondary);
    position: relative;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-stats .stat {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
}

.hero-stats .stat i {
    font-size: 1.25rem;
    color: var(--secondary);
}

/* Hero Content Grid with Profile Card */
.hero-content-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
    align-items: center;
    margin-bottom: 40px;
}

.hero-about-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    animation: slideInRight 1s ease 0.3s both;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-profile-image {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 20px;
}

.hero-profile-image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--secondary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-profile-image .profile-badge {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: var(--gray-900);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 4px;
}

.hero-profile-image .profile-badge i {
    font-size: 0.65rem;
}

.hero-profile-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
    font-family: var(--font-heading);
}

.hero-profile-info .profile-title {
    color: var(--secondary);
    font-weight: 500;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.hero-profile-info .profile-arn {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    margin-bottom: 16px;
}

.hero-profile-info .profile-quote {
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}

.hero-profile-info .profile-quote i {
    color: var(--secondary);
    font-size: 0.75rem;
    margin-right: 6px;
}

.profile-highlights {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.profile-highlights .highlight {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8rem;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
}

.profile-highlights .highlight i {
    color: var(--secondary);
    font-size: 0.7rem;
}

.profile-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
}

.profile-cta:hover {
    background: #128C7E;
    transform: scale(1.05);
}

.profile-cta i {
    font-size: 1.2rem;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
    z-index: 1;
}

.hero-wave svg {
    width: 100%;
    height: 80px;
    display: block;
}

/* -------------------- About Section -------------------- */
.about {
    padding: var(--section-padding) 0;
    margin-top: -1px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.image-frame::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid var(--secondary);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.image-frame img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary);
    color: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-lg);
}

.experience-badge i {
    font-size: 2rem;
    color: var(--secondary);
}

.experience-badge span {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content .section-title {
    font-size: 2.25rem;
}

.about-text {
    margin-bottom: 16px;
    color: var(--gray-600);
}

.about-text strong {
    color: var(--primary);
}

.about-highlight {
    position: relative;
    padding: 24px;
    background: var(--gray-100);
    border-left: 4px solid var(--secondary);
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 24px 0;
    font-style: italic;
    color: var(--gray-700);
}

.about-highlight i {
    color: var(--secondary);
    margin-right: 8px;
    opacity: 0.5;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.about-features .feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--gray-700);
}

.about-features .feature i {
    color: var(--success);
    font-size: 1.125rem;
}

/* -------------------- Services Section -------------------- */
.services {
    padding: var(--section-padding) 0;
    background: var(--gray-100);
}

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

.service-card {
    position: relative;
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-card.featured {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
}

.service-card.featured h3 {
    color: var(--white);
}

.service-card.featured p {
    color: rgba(255, 255, 255, 0.9);
}

.service-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--secondary);
    color: var(--gray-900);
    padding: 6px 16px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: var(--radius-full);
}

.service-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
}

.service-card.featured .service-icon {
    background: rgba(255, 255, 255, 0.2);
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.375rem;
    margin-bottom: 12px;
}

.service-card > p {
    color: var(--gray-500);
    margin-bottom: 20px;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9375rem;
    color: var(--gray-600);
}

.service-card.featured .service-list li {
    color: rgba(255, 255, 255, 0.9);
}

.service-list li i {
    font-size: 0.75rem;
    color: var(--secondary);
}

/* -------------------- Fin Shorts Section -------------------- */
.fin-shorts {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
    overflow: hidden;
}

.fin-shorts-container {
    position: relative;
    display: flex;
    align-items: center;
    margin: 0 -20px;
    padding: 0 20px;
}

.fin-shorts-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 20px 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.fin-shorts-track::-webkit-scrollbar {
    display: none;
}

.fin-short-card {
    flex: 0 0 320px;
    background: white;
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    scroll-snap-align: start;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.fin-short-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.fin-short-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.fin-short-icon i {
    font-size: 1.5rem;
    color: white;
}

.fin-short-icon.geopolitical { background: linear-gradient(135deg, #ef4444, #dc2626); }
.fin-short-icon.inflation { background: linear-gradient(135deg, #f59e0b, #d97706); }
.fin-short-icon.sip { background: linear-gradient(135deg, #10b981, #059669); }
.fin-short-icon.rates { background: linear-gradient(135deg, #6366f1, #4f46e5); }
.fin-short-icon.tax { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.fin-short-icon.currency { background: linear-gradient(135deg, #0ea5e9, #0284c7); }

.fin-short-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary);
    background: rgba(20, 83, 136, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.fin-short-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.fin-short-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 16px;
}

.fin-short-card p strong {
    color: var(--primary);
    font-weight: 600;
}

.fin-short-tip {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    border-radius: var(--radius-md);
    border-left: 3px solid var(--secondary);
}

.fin-short-tip i {
    color: var(--secondary);
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.fin-short-tip span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.4;
}

.fin-shorts-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--primary);
}

.fin-shorts-nav:hover {
    background: var(--primary);
    color: white;
}

.fin-shorts-nav.prev {
    left: 0;
}

.fin-shorts-nav.next {
    right: 0;
}

.fin-shorts-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.fin-shorts-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-300);
    cursor: pointer;
    transition: var(--transition);
}

.fin-shorts-dot.active {
    background: var(--primary);
    width: 28px;
    border-radius: 5px;
}

.fin-shorts-cta {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.fin-shorts-cta p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 16px;
}

/* Fin Shorts Meta & Live Updates */
.fin-shorts-meta {
    margin-top: 16px;
}

.last-updated {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-light);
    background: rgba(20, 83, 136, 0.08);
    padding: 8px 16px;
    border-radius: 20px;
}

.last-updated i {
    color: var(--primary);
}

.last-updated.live::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* News Source Tabs */
.news-source-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.news-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

.news-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.news-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.news-tab i {
    font-size: 0.85rem;
}

/* Skeleton Loading */
.fin-short-card.skeleton {
    animation: shimmer 1.5s infinite;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
}

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

.skeleton-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(0,0,0,0.1);
    margin-bottom: 16px;
}

.skeleton-tag {
    width: 100px;
    height: 24px;
    border-radius: 20px;
    background: rgba(0,0,0,0.1);
    margin-bottom: 12px;
}

.skeleton-title {
    width: 80%;
    height: 24px;
    border-radius: 4px;
    background: rgba(0,0,0,0.1);
    margin-bottom: 12px;
}

.skeleton-text {
    width: 100%;
    height: 16px;
    border-radius: 4px;
    background: rgba(0,0,0,0.08);
    margin-bottom: 8px;
}

.skeleton-text.short {
    width: 60%;
}

/* Live News Card Styles */
.fin-short-card.news-card {
    position: relative;
}

.fin-short-card .news-time {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 0.75rem;
    color: var(--text-light);
    background: var(--gray-100);
    padding: 4px 10px;
    border-radius: 12px;
}

.fin-short-card .news-source {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--gray-200);
}

.fin-short-card .read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.fin-short-card .read-more:hover {
    gap: 10px;
}

/* News Sources Attribution */
.news-sources {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
    font-size: 0.8rem;
    color: var(--text-light);
    flex-wrap: wrap;
}

.source-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.source-badges .badge {
    background: var(--gray-100);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    color: var(--text-dark);
}

/* Category Icons for Dynamic Cards */
.fin-short-icon.markets { background: linear-gradient(135deg, #10b981, #059669); }
.fin-short-icon.economy { background: linear-gradient(135deg, #6366f1, #4f46e5); }
.fin-short-icon.global { background: linear-gradient(135deg, #f59e0b, #d97706); }
.fin-short-icon.commodities { background: linear-gradient(135deg, #d4af37, #b8860b); }
.fin-short-icon.banking { background: linear-gradient(135deg, #0ea5e9, #0284c7); }
.fin-short-icon.policy { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }

/* -------------------- Why Choose Us Section -------------------- */
.why-us {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #0f2744 100%);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-card {
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(4px);
    transition: var(--transition);
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.why-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    opacity: 0.5;
    margin-bottom: 16px;
}

.why-card h3 {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 12px;
}

.why-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
}

/* -------------------- Audience Section -------------------- */
.audience {
    padding: var(--section-padding) 0;
}

.audience-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.audience-card {
    text-align: center;
    padding: 40px 24px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    flex: 0 0 calc(25% - 23px);
    max-width: 280px;
}

.audience-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

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

.audience-card h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
}

.audience-card p {
    color: var(--gray-500);
    font-size: 0.9375rem;
}

/* -------------------- Contact Section -------------------- */
.contact {
    padding: var(--section-padding) 0;
    background: var(--gray-100);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info .section-title {
    font-size: 2rem;
}

.contact-info > p {
    color: var(--gray-500);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

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

.contact-item i {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius);
    font-size: 1.25rem;
}

.contact-item h4 {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-500);
    margin-bottom: 4px;
}

.contact-item a,
.contact-item span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-800);
}

.contact-item a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--gray-600);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px 16px 50px;
    font-family: var(--font-primary);
    font-size: 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    background: var(--white);
    transition: var(--transition);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
    transition: var(--transition);
}

.form-group textarea + i {
    top: 20px;
    transform: none;
}

.form-group input:focus + i,
.form-group select:focus + i,
.form-group textarea:focus + i {
    color: var(--primary);
}

.contact-form .btn {
    margin-top: 10px;
}

/* -------------------- Footer -------------------- */
.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    margin-bottom: 16px;
    font-size: 0.9375rem;
}

.amfi-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    font-size: 0.8125rem;
    color: var(--secondary);
}

.amfi-badge i {
    color: var(--secondary);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 24px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--gray-400);
    font-size: 0.9375rem;
    transition: var(--transition);
}

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

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.9375rem;
}

.footer-contact i {
    color: var(--secondary);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    color: var(--gray-400);
    border-radius: var(--radius);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
}

.footer-bottom {
    padding: 30px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    margin-bottom: 8px;
}

.footer-bottom .disclaimer {
    font-size: 0.75rem;
    color: var(--gray-500);
    max-width: 700px;
    margin: 12px auto 0;
}

/* -------------------- Portfolio Calculator -------------------- */
.calculator {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.calculator-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.calculator-form-section {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.calculator-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.calc-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.calc-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.calc-form-group.full-width {
    grid-column: 1 / -1;
}

.calc-form-group label {
    font-weight: 600;
    color: var(--gray-700);
    font-size: 0.9375rem;
}

.calc-form-group input,
.calc-form-group select {
    padding: 14px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: var(--transition);
}

.calc-form-group input:focus,
.calc-form-group select:focus {
    outline: none;
    border-color: var(--primary);
}

.input-hint {
    font-size: 0.8125rem;
    color: var(--gray-400);
}

/* Investor Type Options */
.investor-type-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 8px;
}

.investor-option {
    cursor: pointer;
}

.investor-option input {
    display: none;
}

.option-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
}

.option-card i {
    font-size: 2rem;
    color: var(--gray-400);
    transition: var(--transition);
}

.option-title {
    font-weight: 600;
    color: var(--gray-700);
}

.option-desc {
    font-size: 0.75rem;
    color: var(--gray-400);
}

.investor-option input:checked + .option-card {
    border-color: var(--primary);
    background: rgba(37, 99, 235, 0.05);
}

.investor-option input:checked + .option-card i {
    color: var(--primary);
}

.investor-option:hover .option-card {
    border-color: var(--primary-light);
}

.calc-submit {
    margin-top: 16px;
    padding: 16px 32px;
    font-size: 1.0625rem;
    gap: 10px;
}

/* Calculator Results */
.calculator-results {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    margin-top: 0;
    animation: fadeInUp 0.5s ease;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

.results-header h3 {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary-dark);
}

.results-header h3 i {
    color: var(--primary);
}

.recalculate-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--gray-100);
    border: none;
    border-radius: var(--radius);
    color: var(--gray-600);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.recalculate-btn:hover {
    background: var(--gray-200);
}

.risk-profile-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-full);
    margin-bottom: 30px;
}

.risk-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.risk-value {
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.allocation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.chart-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 20px;
    text-align: center;
}

/* Donut Chart */
.allocation-chart-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.donut-chart {
    position: relative;
    width: 200px;
    height: 200px;
    margin-bottom: 20px;
}

.donut-chart svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.chart-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.center-label {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-400);
}

.center-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
}

.allocation-legend {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
}

.legend-color {
    width: 12px;
    height: 12px;
    border-radius: 3px;
}

.legend-text {
    color: var(--gray-600);
}

.legend-value {
    font-weight: 600;
    color: var(--gray-800);
}

/* Equity Bars */
.equity-breakdown-container {
    padding: 20px;
    background: var(--gray-100);
    border-radius: var(--radius);
}

.equity-bars {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.equity-bar-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.equity-bar-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
}

.equity-bar-name {
    color: var(--gray-700);
    font-weight: 500;
}

.equity-bar-value {
    color: var(--primary);
    font-weight: 600;
}

.equity-bar-track {
    height: 10px;
    background: var(--gray-300);
    border-radius: 5px;
    overflow: hidden;
}

.equity-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 5px;
    transition: width 0.8s ease;
}

/* Investment Summary */
.investment-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 24px;
    background: var(--gray-100);
    border-radius: var(--radius);
    margin-bottom: 30px;
}

.summary-item {
    text-align: center;
}

.summary-label {
    display: block;
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-bottom: 4px;
}

.summary-value {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-800);
}

/* Results CTA */
.results-cta {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(30, 58, 95, 0.05) 100%);
    border-radius: var(--radius);
    margin-bottom: 20px;
}

.results-cta p {
    font-size: 1.125rem;
    color: var(--gray-700);
    margin-bottom: 20px;
}

.results-cta .btn {
    margin: 0 8px 10px;
}

.btn-outline-dark {
    background: transparent;
    color: var(--gray-700);
    border: 2px solid var(--gray-300);
}

.btn-outline-dark:hover {
    background: var(--gray-100);
    border-color: var(--gray-400);
}

.disclaimer-text {
    font-size: 0.8125rem;
    color: var(--gray-500);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Calculator Responsive */
@media (max-width: 768px) {
    .calc-form-row {
        grid-template-columns: 1fr;
    }
    
    .investor-type-options {
        grid-template-columns: 1fr;
    }
    
    .allocation-grid {
        grid-template-columns: 1fr;
    }
    
    .investment-summary {
        grid-template-columns: 1fr;
    }
    
    .calculator-form-section,
    .calculator-results {
        padding: 24px;
    }
    
    .results-cta .btn {
        display: block;
        width: 100%;
        margin: 0 0 12px;
    }
    
    /* Fin Shorts responsive */
    .fin-shorts-nav {
        display: none;
    }
    
    .fin-short-card {
        flex: 0 0 280px;
    }
    
    .fin-shorts-container {
        margin: 0;
        padding: 0;
    }
}

/* -------------------- Floating Elements -------------------- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    background: #25d366;
    color: var(--white);
    border-radius: 30px;
    font-size: 1.75rem;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: translateX(0);
    background: #128C7E;
}

.whatsapp-float:hover .float-label {
    opacity: 1;
    max-width: 100px;
    margin-left: 10px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Callback Float Button */
.callback-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border: none;
    border-radius: 30px;
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    cursor: pointer;
    transition: var(--transition);
    animation: callPulse 2s infinite;
}

.callback-float:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.callback-float:hover .float-label {
    opacity: 1;
    max-width: 120px;
    margin-left: 10px;
}

/* Float Label Styling */
.float-label {
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    max-width: 0;
    overflow: hidden;
    transition: var(--transition);
}

@keyframes callPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 99, 235, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
    }
}

/* Callback Modal */
.callback-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    padding: 20px;
}

.callback-modal.active {
    opacity: 1;
    visibility: visible;
}

.callback-modal-content {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    max-width: 420px;
    width: 100%;
    position: relative;
    transform: translateY(-20px) scale(0.95);
    transition: var(--transition);
    box-shadow: var(--shadow-xl);
}

.callback-modal.active .callback-modal-content {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border: none;
    border-radius: 50%;
    color: var(--gray-600);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--error);
    color: var(--white);
}

.modal-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    margin: 0 auto 20px;
}

.modal-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.callback-modal-content h3 {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 8px;
}

.callback-modal-content > p {
    text-align: center;
    color: var(--gray-500);
    margin-bottom: 30px;
}

.callback-form .form-group {
    margin-bottom: 16px;
}

.callback-form .btn {
    margin-top: 8px;
}

/* Modal Success State */
.callback-success {
    text-align: center;
    padding: 20px 0;
}

.callback-success i {
    font-size: 4rem;
    color: var(--success);
    margin-bottom: 20px;
}

.callback-success h3 {
    color: var(--success);
    margin-bottom: 12px;
}

.callback-success p {
    color: var(--gray-500);
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 100px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-4px);
}

/* -------------------- Responsive Design -------------------- */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .audience-card {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-image {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }
    
    /* Language toggle stays fixed on mobile too */
    .lang-toggle-nav {
        top: 15px;
        right: 15px;
        padding: 4px;
    }
    
    .lang-btn-nav {
        padding: 6px 10px;
        font-size: 0.75rem;
    }
    
    .nav-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        align-items: center;
        justify-content: center;
        order: 3;
        background: transparent !important;
        border: none !important;
        padding: 8px !important;
        flex: 0 0 auto;
        width: 40px;
        height: 40px;
    }
    
    .logo {
        order: 1;
        flex: 1 1 auto;
        min-width: 0;
        overflow: visible;
        gap: 2px;
        flex-wrap: wrap;
    }
    
    .logo-text {
        font-size: 0.95rem;
    }
    
    .logo-highlight {
        font-size: 0.95rem;
    }
    
    .logo-sub {
        font-size: 0.7rem;
    }
    
    .lang-toggle-nav {
        order: 2;
        margin-right: 5px;
        flex: 0 0 auto;
        position: relative;
        top: -3px;
    }
    
    .lang-btn-nav {
        padding: 5px 8px;
        font-size: 0.7rem;
    }
    
    .navbar .container {
        flex-wrap: nowrap;
        gap: 5px;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 320px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 100px;
        gap: 20px;
        padding-left: 40px;
        padding-right: 40px;
        box-shadow: -5px 0 30px rgba(0,0,0,0.15);
        transition: right 0.3s ease-in-out;
        z-index: 1000;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    /* Mobile menu overlay */
    .nav-menu::before {
        content: '';
        position: fixed;
        top: 0;
        left: -100vw;
        width: 100vw;
        height: 100vh;
        background: rgba(0,0,0,0.5);
        opacity: 0;
        transition: opacity 0.3s;
        pointer-events: none;
    }
    
    .nav-menu.active::before {
        opacity: 1;
        pointer-events: auto;
    }
    
    /* Dropdown in mobile */
    .nav-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 10px 0 10px 20px;
        background: transparent;
    }
    
    .nav-dropdown .dropdown-menu li a {
        padding: 8px 0;
        font-size: 0.95rem;
    }
    
    .nav-link {
        color: var(--gray-700);
        font-size: 1.125rem;
    }
    
    .nav-link.cta-btn {
        width: 100%;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-about-card {
        max-width: 350px;
        margin: 0 auto;
        padding: 24px;
    }
    
    .hero-profile-image {
        width: 100px;
        height: 100px;
    }
    
    .hero-profile-info h3 {
        font-size: 1.25rem;
    }
    
    .profile-highlights {
        gap: 8px;
    }
    
    .profile-highlights .highlight {
        font-size: 0.7rem;
        padding: 4px 8px;
    }
    
    .hero-stats {
        gap: 24px;
    }
    
    .hero-stats .stat {
        font-size: 0.875rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .audience-card {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand .logo {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    
    .callback-float {
        bottom: 90px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.25rem;
    }
    
    .back-to-top {
        right: 85px;
        bottom: 20px;
        width: 45px;
        height: 45px;
    }
    
    .callback-modal-content {
        padding: 30px 24px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }
    
    .service-card {
        padding: 32px 24px;
    }
    
    .contact-form-wrapper {
        padding: 30px 24px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 16px 14px 45px;
    }
}

/* -------------------- Animations -------------------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

/* -------------------- Form Success/Error States -------------------- */
.form-success {
    text-align: center;
    padding: 40px;
}

.form-success i {
    font-size: 4rem;
    color: var(--success);
    margin-bottom: 20px;
}

.form-success h3 {
    color: var(--success);
    margin-bottom: 12px;
}

.form-success p {
    color: var(--gray-500);
}

/* Scroll animations for elements */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}
