/* Vene Consulting - Corporate Elegance Design */
:root {
    --primary: #1a365d;
    --secondary: #2c5282;
    --accent: #d4af37;
    --light: #ffffff;
    --dark: #1a202c;
    --gray: #4a5568;
    --light-gray: #f7fafc;
    --cream: #fef5e7;
    --gold: #f6e05e;
    --navy: #2c3e50;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --gold-gradient: linear-gradient(135deg, var(--accent) 0%, var(--gold) 100%);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background: var(--light);
    color: var(--dark);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-gradient);
    border-radius: 6px;
    transition: var(--transition);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Georgia', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary);
    position: relative;
    transition: var(--transition);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

h1::after,
h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gold-gradient);
    transition: var(--transition-slow);
}

h1.animated::after,
h2.animated::after {
    width: 100px;
}

p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    transition: var(--transition);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 2px solid var(--accent);
    transition: var(--transition-slow);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    padding: 0.7rem 0;
}

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

.logo {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
    font-family: 'Georgia', serif;
    position: relative;
    overflow: hidden;
}

.logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    transition: var(--transition-slow);
}

.logo:hover::before {
    left: 100%;
}

.logo:hover {
    color: var(--accent);
    transform: scale(1.05);
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 0;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    color: var(--accent);
    opacity: 0;
    transition: var(--transition);
    transform: translateY(-10px);
}

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

.nav-link:hover {
    color: var(--accent);
    transform: translateY(-2px);
}

.nav-link:hover::after {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(26, 54, 93, 0.8), rgba(26, 54, 93, 0.8)), url('img2/image1.jpg') center/cover;
    position: relative;
    overflow: hidden;
    animation: heroShift 20s ease-in-out infinite;
}

@keyframes heroShift {
    0%, 100% { background-position: center; }
    50% { background-position: center top; }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('img/venebg1.jpg') center/cover;
    opacity: 0.3;
    animation: pulse 4s ease-in-out infinite;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    color: var(--light);
    margin-bottom: 2rem;
    font-size: 3.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); }
    50% { text-shadow: 2px 2px 20px rgba(212, 175, 55, 0.5); }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--cream);
    margin-bottom: 3rem;
    font-style: italic;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-slow);
    cursor: pointer;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: var(--transition-slow);
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--dark);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    border: 2px solid var(--accent);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.4);
    background: var(--accent);
}

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

.btn-outline:hover {
    background: var(--light);
    color: var(--primary);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.3);
}

/* Sections */
.section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.05), transparent);
    transition: var(--transition-slow);
}

.section.animated::before {
    left: 100%;
}

.section-dark {
    background: var(--light-gray);
}

.section-light {
    background: var(--light);
}

.section-accent {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--light);
}

.section-accent h2,
.section-accent h3,
.section-accent p {
    color: var(--light);
}

/* Image Gallery */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition-slow);
    height: 250px;
    cursor: pointer;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gold-gradient);
    opacity: 0;
    transition: var(--transition-slow);
    z-index: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.1) rotate(2deg);
    filter: brightness(0.8);
}

.gallery-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.gallery-item:hover::before {
    opacity: 0.1;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 2rem 1rem 1rem;
    transform: translateY(100%);
    transition: var(--transition-slow);
    z-index: 2;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    color: var(--light);
    margin-bottom: 0.5rem;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition-slow) 0.2s;
}

.gallery-item:hover .gallery-overlay h4 {
    transform: translateY(0);
    opacity: 1;
}

.gallery-overlay p {
    color: var(--cream);
    font-size: 0.9rem;
    margin: 0;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition-slow) 0.3s;
}

.gallery-item:hover .gallery-overlay p {
    transform: translateY(0);
    opacity: 1;
}

/* Why Choose Us Section - Professional Redesign - FORCED STYLES */
#why-choose-us .features-container {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 2rem !important;
    margin-top: 4rem !important;
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

#why-choose-us .feature-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
    border-radius: 16px !important;
    padding: 2.5rem 2rem !important;
    box-shadow: 0 8px 32px rgba(26, 54, 93, 0.08) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    border: 1px solid rgba(212, 175, 55, 0.1) !important;
    overflow: hidden !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
}

#why-choose-us .feature-item::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 4px !important;
    background: linear-gradient(90deg, var(--accent) 0%, var(--gold) 100%) !important;
    transform: scaleX(0) !important;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

#why-choose-us .feature-item:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 40px rgba(26, 54, 93, 0.15) !important;
    border-color: var(--accent) !important;
}

#why-choose-us .feature-item:hover::before {
    transform: scaleX(1) !important;
}

#why-choose-us .feature-icon {
    width: 70px !important;
    height: 70px !important;
    background: linear-gradient(135deg, var(--accent) 0%, var(--gold) 100%) !important;
    border-radius: 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 1.5rem !important;
    font-size: 1.8rem !important;
    color: white !important;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.25) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
}

#why-choose-us .feature-item:hover .feature-icon {
    transform: scale(1.05) rotate(-2deg) !important;
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.35) !important;
}

#why-choose-us .feature-title {
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    color: var(--primary) !important;
    margin-bottom: 1rem !important;
    line-height: 1.3 !important;
    transition: color 0.4s ease !important;
}

#why-choose-us .feature-item:hover .feature-title {
    color: var(--accent) !important;
}

#why-choose-us .feature-description {
    color: #6c757d !important;
    font-size: 0.95rem !important;
    line-height: 1.7 !important;
    flex-grow: 1 !important;
    margin-bottom: 1.5rem !important;
    transition: color 0.4s ease !important;
}

#why-choose-us .feature-item:hover .feature-description {
    color: var(--dark) !important;
}

#why-choose-us .feature-badge {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%) !important;
    color: white !important;
    padding: 0.5rem 1.2rem !important;
    border-radius: 25px !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 12px rgba(26, 54, 93, 0.2) !important;
}

#why-choose-us .feature-item:hover .feature-badge {
    background: linear-gradient(135deg, var(--accent) 0%, var(--gold) 100%) !important;
    transform: scale(1.05) !important;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3) !important;
}

/* Responsive Design for Why Choose Us */
@media (max-width: 1200px) {
    #why-choose-us .features-container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
        gap: 1.5rem !important;
    }
}

@media (max-width: 768px) {
    #why-choose-us .features-container {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        margin-top: 3rem !important;
    }
    
    #why-choose-us .feature-item {
        padding: 2rem 1.5rem !important;
    }
    
    #why-choose-us .feature-icon {
        width: 60px !important;
        height: 60px !important;
        font-size: 1.5rem !important;
    }
    
    #why-choose-us .feature-title {
        font-size: 1.1rem !important;
    }
    
    #why-choose-us .feature-description {
        font-size: 0.9rem !important;
    }
}

@media (max-width: 480px) {
    #why-choose-us .feature-item {
        padding: 1.5rem 1rem !important;
    }
    
    #why-choose-us .feature-icon {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.3rem !important;
        margin-bottom: 1rem !important;
    }
    
    #why-choose-us .feature-title {
        font-size: 1rem !important;
        margin-bottom: 0.8rem !important;
    }
    
    #why-choose-us .feature-description {
        font-size: 0.85rem !important;
        line-height: 1.6 !important;
        margin-bottom: 1rem !important;
    }
    
    #why-choose-us .feature-badge {
        padding: 0.4rem 1rem !important;
        font-size: 0.7rem !important;
    }
}

/* Stagger animation */
.why-choose-us .feature-item {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUpFeature 0.6s ease-out forwards;
}

.why-choose-us .feature-item:nth-child(1) { animation-delay: 0.1s; }
.why-choose-us .feature-item:nth-child(2) { animation-delay: 0.2s; }
.why-choose-us .feature-item:nth-child(3) { animation-delay: 0.3s; }
.why-choose-us .feature-item:nth-child(4) { animation-delay: 0.4s; }
.why-choose-us .feature-item:nth-child(5) { animation-delay: 0.5s; }
.why-choose-us .feature-item:nth-child(6) { animation-delay: 0.6s; }
.why-choose-us .feature-item:nth-child(7) { animation-delay: 0.7s; }

@keyframes fadeInUpFeature {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: none;
    border-radius: 25px;
    padding: 0;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--accent), var(--gold), var(--accent));
    border-radius: 25px;
    opacity: 0;
    transition: var(--transition-slow);
    z-index: -1;
}

.card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(246, 224, 94, 0.05) 100%);
    opacity: 0;
    transition: var(--transition-slow);
    border-radius: 25px;
}

.card:hover::before {
    opacity: 1;
}

.card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 20px 60px rgba(31, 38, 135, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
}

.card:hover::after {
    opacity: 1;
}

.card-content {
    padding: 2.5rem;
    position: relative;
    z-index: 2;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: var(--light);
    box-shadow: 0 8px 25px rgba(26, 54, 93, 0.3);
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.card-icon::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: var(--transition-slow);
}

.card:hover .card-icon::before {
    left: 100%;
}

.card:hover .card-icon {
    transform: translateY(-5px) rotate(5deg) scale(1.1);
    background: linear-gradient(135deg, var(--accent) 0%, var(--gold) 100%);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
    border-radius: 25px;
}

.card h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    transition: var(--transition);
    font-size: 1.4rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gold-gradient);
    transition: var(--transition-slow);
}

.card:hover h3 {
    color: var(--accent);
    transform: translateX(10px);
}

.card:hover h3::after {
    width: 60px;
}

.card p {
    transition: var(--transition);
    line-height: 1.7;
    color: var(--gray);
    position: relative;
    z-index: 2;
}

.card:hover p {
    color: var(--dark);
    transform: translateX(5px);
}

/* Card corner decoration */
.card-corner {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    opacity: 0;
    transition: var(--transition-slow);
}

.card-corner::before,
.card-corner::after {
    content: '';
    position: absolute;
    background: var(--accent);
    transition: var(--transition-slow);
}

.card-corner::before {
    top: 0;
    left: 0;
    width: 3px;
    height: 20px;
}

.card-corner::after {
    top: 0;
    left: 0;
    width: 20px;
    height: 3px;
}

.card:hover .card-corner {
    opacity: 1;
}

.card:hover .card-corner::before {
    height: 30px;
}

.card:hover .card-corner::after {
    width: 30px;
}

/* Update HTML structure for new card style */
.card {
    display: flex;
    flex-direction: column;
}

.card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Stats Section */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
    margin-top: 3rem;
}

.stat-item {
    background: var(--light);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid var(--accent);
    box-shadow: var(--shadow);
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gold-gradient);
    opacity: 0;
    transition: var(--transition-slow);
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--gold);
}

.stat-item:hover::before {
    opacity: 0.05;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 1rem;
    font-family: 'Georgia', serif;
    transition: var(--transition-slow);
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
    filter: drop-shadow(0 5px 10px rgba(212, 175, 55, 0.3));
}

.stat-label {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.stat-item:hover .stat-label {
    color: var(--accent);
    transform: translateY(-2px);
}

/* Contact Section */
.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--light);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 2px solid var(--accent);
    transition: var(--transition-slow);
}

.contact-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

.form-control {
    width: 100%;
    padding: 1.25rem;
    background: var(--light-gray);
    border: 2px solid transparent;
    border-radius: 10px;
    color: var(--dark);
    font-size: 1rem;
    transition: var(--transition);
    font-family: 'Georgia', serif;
    position: relative;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--light);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.form-control::placeholder {
    color: var(--gray);
    font-style: italic;
    transition: var(--transition);
}

.form-control:focus::placeholder {
    opacity: 0;
    transform: translateY(-10px);
}

/* Testimonials */
.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial {
    background: var(--light);
    padding: 2.5rem;
    border-radius: 15px;
    border-left: 5px solid var(--accent);
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition-slow);
    cursor: pointer;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: var(--accent);
    font-family: 'Georgia', serif;
    opacity: 0.3;
    transition: var(--transition-slow);
}

.testimonial:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-left-color: var(--gold);
}

.testimonial:hover::before {
    opacity: 0.6;
    transform: rotate(10deg) scale(1.1);
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--gray);
    transition: var(--transition);
}

.testimonial:hover .testimonial-content {
    color: var(--dark);
    transform: translateX(5px);
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary);
    transition: var(--transition);
}

.testimonial:hover .testimonial-author {
    color: var(--accent);
    transform: translateX(3px);
}

.testimonial-role {
    color: var(--accent);
    font-size: 0.9rem;
    transition: var(--transition);
}

.testimonial:hover .testimonial-role {
    color: var(--gold);
}

/* Footer */
.footer {
    background: var(--primary);
    color: var(--light);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    animation: footerShine 15s ease-in-out infinite;
}

@keyframes footerShine {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-section h4 {
    color: var(--accent);
    margin-bottom: 1.5rem;
    font-family: 'Georgia', serif;
    position: relative;
    transition: var(--transition);
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: var(--transition);
}

.footer-section:hover h4::after {
    width: 50px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
    transition: var(--transition);
}

.footer-links a {
    color: var(--cream);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    display: inline-block;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
    transform: translateX(3px);
}

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

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    border-top-color: var(--accent);
    animation: spin 1s ease-in-out infinite;
}

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

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 250px;
        justify-content: center;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .section {
        padding: 4rem 0;
    }
}

/* Language Switcher Styles */
.language-dropdown {
    position: relative;
    margin-left: 1rem;
}

.language-switcher {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    color: var(--light);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    transition: var(--transition-fast);
    backdrop-filter: blur(10px);
}

.language-switcher:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.language-switcher .flag {
    font-size: 1.2rem;
}

.language-switcher .lang-code {
    font-weight: 600;
}

.language-switcher i {
    font-size: 0.8rem;
    transition: var(--transition-fast);
}

.language-dropdown:hover .language-switcher i {
    transform: rotate(180deg);
}

.language-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--primary);
    border: 1px solid var(--accent);
    border-radius: 8px;
    min-width: 150px;
    box-shadow: var(--shadow);
    z-index: 1000;
    display: none;
    margin-top: 0.5rem;
    overflow: hidden;
}

.language-menu a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    color: var(--light);
    text-decoration: none;
    transition: var(--transition-fast);
    font-size: 0.9rem;
}

.language-menu a:hover {
    background: var(--accent);
    color: var(--primary);
}

.language-menu .flag {
    font-size: 1.1rem;
}

/* Update navbar scrolled state for language switcher */
.navbar.scrolled .language-switcher {
    background: rgba(26, 54, 93, 0.9);
    border-color: var(--accent);
    color: var(--light);
}

.navbar.scrolled .language-switcher:hover {
    background: var(--primary);
}

/* Mobile language switcher */
@media (max-width: 768px) {
    .language-dropdown {
        margin-left: 0;
        margin-top: 1rem;
        width: 100%;
    }
    
    .language-switcher {
        width: 100%;
        justify-content: center;
        background: rgba(26, 54, 93, 0.9);
        border: 1px solid var(--accent);
    }
    
    .language-menu {
        position: relative;
        top: 0;
        margin-top: 0.5rem;
        width: 100%;
    }
}

/* New Language Selector */
.language-selector {
    position: relative;
    margin-left: 1rem;
}

#langBtn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    color: var(--light);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    transition: var(--transition-fast);
    backdrop-filter: blur(10px);
}

#langBtn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.lang-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--primary);
    border: 1px solid var(--accent);
    border-radius: 8px;
    min-width: 150px;
    box-shadow: var(--shadow);
    z-index: 1000;
    margin-top: 0.5rem;
    overflow: hidden;
}

.lang-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--light);
    text-decoration: none;
    transition: var(--transition-fast);
    font-size: 0.9rem;
}

.lang-menu a:hover {
    background: var(--accent);
    color: var(--primary);
}

/* Web Design Promotion Section */
.web-design-promo {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.web-design-promo::before {
    content: '';
    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.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.web-design-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.text-badge {
    margin-bottom: 1rem;
}

.badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.web-design-text h2 {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.web-design-text p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.web-design-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    font-size: 1rem;
}

.feature-item i {
    font-size: 1.5rem;
    color: #ffd700;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

.web-design-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.browser-mockup {
    background: white;
    border-radius: 15px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    max-width: 500px;
    width: 100%;
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.browser-mockup:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.browser-header {
    background: #f5f5f5;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid #e0e0e0;
}

.browser-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #ff5f57; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #28ca42; }

.browser-url {
    flex: 1;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-family: monospace;
    font-size: 0.9rem;
    color: #666;
    border: 1px solid #ddd;
}

.browser-content {
    padding: 2rem;
    background: white;
}

.mockup-website {
    font-family: Arial, sans-serif;
}

.mockup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.mockup-logo {
    font-weight: bold;
    color: #333;
    font-size: 1.2rem;
}

.mockup-nav {
    display: flex;
    gap: 2rem;
    color: #666;
    font-size: 0.9rem;
}

.mockup-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 2rem;
}

.mockup-hero h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.mockup-hero p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.mockup-btn {
    background: white;
    color: #667eea;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.mockup-btn:hover {
    transform: translateY(-2px);
}

.mockup-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.mockup-card {
    height: 80px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    top: -30px;
    right: 50px;
    animation-delay: 0s;
}

.element-2 {
    top: 50%;
    right: -30px;
    animation-delay: 2s;
}

.element-3 {
    bottom: -30px;
    right: 100px;
    animation-delay: 4s;
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .web-design-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .web-design-features {
        grid-template-columns: 1fr;
        text-align: left;
        max-width: 400px;
        margin: 0 auto 2rem;
    }
    
    .web-design-text h2 {
        font-size: 2.5rem;
    }
    
    .browser-mockup {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .web-design-promo {
        padding: 60px 0;
    }
    
    .web-design-content {
        gap: 2rem;
    }
    
    .web-design-text h2 {
        font-size: 2rem;
    }
    
    .web-design-text p {
        font-size: 1.1rem;
    }
    
    .browser-mockup {
        max-width: 350px;
    }
    
    .browser-content {
        padding: 1.5rem;
    }
    
    .mockup-features {
        grid-template-columns: 1fr;
    }
    
    .floating-element {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .web-design-text h2 {
        font-size: 1.8rem;
    }
    
    .browser-mockup {
        max-width: 300px;
    }
    
    .browser-header {
        padding: 0.75rem;
    }
    
    .browser-content {
        padding: 1rem;
    }
    
    .mockup-hero {
        padding: 1.5rem;
    }
    
    .mockup-hero h3 {
        font-size: 1.2rem;
    }
}

/* Metodologia 360 Banner Styles */
.metodologia360-banner {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    position: relative;
    overflow: hidden;
}

.metodologia360-banner::before {
    content: '';
    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="hex" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M10 0 L20 5.77 L20 14.23 L10 20 L0 14.23 L0 5.77 Z" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23hex)"/></svg>');
    opacity: 0.4;
}

.metodologia360-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.metodologia360-text h2 {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.metodologia360-text p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.metodologia360-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.metodologia360-features .feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    font-size: 1rem;
}

.metodologia360-features i {
    font-size: 1.5rem;
    color: #10b981;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.2);
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

.metodologia360-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circular-mockup {
    width: 300px;
    height: 300px;
    position: relative;
    animation: rotate 20s linear infinite;
}

.circle-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 0 40px rgba(16, 185, 129, 0.3);
}

.orbit {
    position: absolute;
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 50%;
    animation: rotate 15s linear infinite;
}

.orbit-1 {
    width: 140px;
    height: 140px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.orbit-2 {
    width: 180px;
    height: 180px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 20s;
    animation-direction: reverse;
}

.orbit-3 {
    width: 220px;
    height: 220px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 25s;
}

.orbit-4 {
    width: 260px;
    height: 260px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 30s;
    animation-direction: reverse;
}

.orbit i {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(16, 185, 129, 0.8);
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px;
    border-radius: 50%;
    backdrop-filter: blur(5px);
}

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

/* Responsive Design for Metodologia 360 */
@media (max-width: 992px) {
    .metodologia360-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .metodologia360-features {
        grid-template-columns: 1fr;
        text-align: left;
        max-width: 400px;
        margin: 0 auto 2rem;
    }
    
    .metodologia360-text h2 {
        font-size: 2.5rem;
    }
    
    .circular-mockup {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 768px) {
    .metodologia360-banner {
        padding: 60px 0;
    }
    
    .metodologia360-content {
        gap: 2rem;
    }
    
    .metodologia360-text h2 {
        font-size: 2rem;
    }
    
    .metodologia360-text p {
        font-size: 1.1rem;
    }
    
    .circular-mockup {
        width: 200px;
        height: 200px;
    }
    
    .circle-center {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .orbit-1 { width: 100px; height: 100px; }
    .orbit-2 { width: 130px; height: 130px; }
    .orbit-3 { width: 160px; height: 160px; }
    .orbit-4 { width: 190px; height: 190px; }
    
    .orbit i {
        top: -10px;
        font-size: 1rem;
        padding: 6px;
    }
}

/* VenePOS Banner Styles */
.venepos-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--light);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.venepos-banner::before {
    content: '';
    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"><text y="50" font-size="100" fill="rgba(212,175,55,0.1)">🚀</text></svg>');
    background-size: 100px 100px;
    animation: float-bg 20s linear infinite;
}

@keyframes float-bg {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(-100px) translateY(-100px); }
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.banner-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.banner-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: white;
}

.banner-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.banner-features span {
    background: rgba(212, 175, 55, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid var(--accent);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-content {
    background: var(--light);
    border-radius: 15px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header {
    background: var(--gradient);
    color: var(--light);
    padding: 2rem;
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    font-size: 1.5rem;
    margin: 0;
    color: white !important;
}

.modal-close {
    background: none;
    border: none;
    color: var(--light);
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition-fast);
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.modal-body {
    padding: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.25rem;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--accent);
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
    line-height: 1.5;
    color: var(--dark);
    cursor: pointer;
    user-select: none;
    flex: 1;
}

.checkbox-group label:hover {
    color: var(--accent);
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.form-actions .btn {
    flex: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .banner-text h2 {
        font-size: 2rem;
    }
    
    .banner-features {
        justify-content: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .modal {
        padding: 1rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
}
