:root {
    --primary: #003399;
    --secondary: #0066cc;
    --accent: #009933;
    --accent2: #cc0000;
    --warning: #ff6600;
    --dark: #0a0a0a;
    --dark2: #1a1a1a;
    --light: #ffffff;
    --gray: #f5f5f5;
    --gray2: #e5e5e5;
    --text: #333333;
    --text-light: #666666;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 16px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
    font-weight: 400;
}

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

.section-header .subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 52px;
    color: var(--dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.section-header .section-desc {
    color: var(--text-light);
    font-size: 18px;
    margin-top: 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 35px;
    border-radius: 0;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s ease;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--light);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

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

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

/* Header */
#header {
    position: fixed;
    top: 42px;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #1D63FF;
    padding: 20px 0;
    transition: all 0.3s ease;
}

#header.scrolled {
    top: 42px;
    padding: 12px 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

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

.logo a {
    display: block;
}

.logo a img {
    height: 50px;
    width: auto;
}

.nav-menu ul {
    display: flex;
    gap: 35px;
}

.nav-menu ul li a {
    color: #ffffff;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
}

.nav-menu ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-menu ul li a:hover {
    color: #FFCE32;
}

.nav-menu ul li a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    margin-top: 42px;
}

.hero-slider {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.slide.active {
    opacity: 1;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.slide-bg img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.01;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--light);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 0.3s forwards;
}

.hero-content h1 {
    font-size: 72px;
    font-weight: 400;
    color: var(--light);
    line-height: 1.1;
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 0.5s forwards;
}

.hero-content h2 {
    font-size: 72px;
    font-weight: 400;
    color: var(--light);
    line-height: 1.1;
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 0.5s forwards;
}

.hero-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 550px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 0.7s forwards;
}

.hero-btns {
    display: flex;
    gap: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 0.9s forwards;
}

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

.slider-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.slider-nav span {
    width: 12px;
    height: 12px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-nav span.active {
    background: var(--primary);
    border-color: var(--primary);
}

/* About Section */
.about {
    padding: 120px 0;
    background: var(--light);
}

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

.about-content h3 {
    font-size: 36px;
    color: var(--dark);
    margin-bottom: 25px;
    line-height: 1.3;
}

.about-content > p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature-item i {
    color: var(--primary);
    font-size: 20px;
    margin-top: 3px;
}

.feature-item h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 5px;
}

.feature-item p {
    font-size: 13px;
    color: var(--text-light);
}

.about-image {
    position: relative;
}

.image-box {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.image-inner {
    width: 350px;
    height: 400px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.image-inner::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255,255,255,0.05) 10px,
        rgba(255,255,255,0.05) 20px
    );
    animation: moveStripes 20s linear infinite;
}

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

.image-inner i {
    font-size: 120px;
    color: var(--light);
    position: relative;
    z-index: 1;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--dark);
    color: var(--light);
    padding: 25px 30px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.experience-badge .counter {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    color: var(--primary);
    display: block;
    line-height: 1;
}

.experience-badge span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Election Types Section */
.election-types {
    padding: 80px 0;
    background: var(--light);
    border-bottom: 1px solid var(--gray2);
}

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

.election-item {
    text-align: center;
    padding: 40px 20px;
    background: var(--gray);
    transition: all 0.3s ease;
}

.election-item:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

.election-item:hover i,
.election-item:hover h4 {
    color: var(--light);
}

.election-item i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.election-item h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    transition: color 0.3s ease;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    text-align: center;
}

.cta-content h2 {
    font-size: 48px;
    color: var(--light);
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-primary {
    background: var(--light);
    color: var(--primary);
}

.cta-section .btn-primary:hover {
    background: var(--dark);
    color: var(--light);
}

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

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

.service-card {
    background: var(--light);
    padding: 40px 30px;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--primary);
    transition: height 0.4s ease;
}

.service-card:hover::before {
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

.service-icon i {
    font-size: 28px;
    color: var(--light);
}

.service-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 15px;
}

.service-content p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
}

.service-overlay {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    padding: 20px 30px;
    background: var(--dark);
    transition: bottom 0.4s ease;
}

.service-card:hover .service-overlay {
    bottom: 0;
}

.service-overlay a {
    color: var(--primary);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-overlay a i {
    transition: transform 0.3s ease;
}

.service-overlay a:hover i {
    transform: translateX(5px);
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: #1D63FF;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.feature-box {
    text-align: center;
    padding: 30px 20px;
}

.feature-box i {
    font-size: 40px;
    color: #FFCE32;
    margin-bottom: 20px;
}

.feature-box h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--light);
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

/* Portfolio Section */
.portfolio {
    padding: 120px 0;
    background: var(--light);
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 25px;
    background: transparent;
    border: 2px solid var(--gray2);
    color: var(--text);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--dark);
    border-color: var(--dark);
    color: var(--light);
}

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

.portfolio-item {
    cursor: pointer;
    transition: all 0.4s ease;
}

.portfolio-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.portfolio-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(29,99,255,0.7), rgba(29,99,255,0.5));
    transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-gradient {
    transform: scale(1.1);
}

.portfolio-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.4s ease 0.1s;
}

.portfolio-item:hover .portfolio-icon {
    transform: translate(-50%, -50%) scale(1);
}

.portfolio-icon i {
    font-size: 32px;
    color: var(--light);
}

.portfolio-info {
    background: #ff6600;
    padding: 25px;
    color: #ffffff;
    transition: background 0.3s ease;
}

.portfolio-item:hover .portfolio-info {
    background: #FFCE32;
}

.portfolio-info h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.portfolio-info p {
    font-size: 13px;
    opacity: 0.8;
}

/* Stats Section */
.stats-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item .counter {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 60px;
    color: var(--light);
    display: block;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-item .counter-label {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info {
    background: #1D63FF;
    padding: 50px;
    height: fit-content;
}

.contact-header {
    margin-bottom: 40px;
}

.contact-header h3 {
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 10px;
}

.contact-header p {
    color: rgba(255,255,255,0.8);
    font-size: 15px;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: #FFCE32;
    font-size: 18px;
}

.contact-text h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
}

.contact-text p {
    color: rgba(255,255,255,0.9);
    font-size: 14px;
}

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

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #FFCE32;
    color: #1D63FF;
    transform: translateY(-3px);
}

.contact-form-wrapper {
    background: var(--light);
    padding: 50px;
}

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

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

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--gray2);
    background: var(--gray);
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

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

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

.human-check {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text);
}

.human-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary);
}

.btn-block {
    width: 100%;
}

/* Footer */
.footer-main {
    background: #003399;
    padding: 80px 0 0;
}

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

.footer-logo a {
    display: block;
}

.footer-logo a img {
    height: 60px;
    width: auto;
}

.footer-about p {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    margin-top: 20px;
    line-height: 1.8;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--light);
    font-size: 14px;
    transition: all 0.3s ease;
}

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

.footer-links h4,
.footer-services h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--light);
    margin-bottom: 25px;
}

.footer-links ul li,
.footer-services ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: #FFCE32;
    padding-left: 5px;
}

.footer-services ul li {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

.footer-bottom {
    background: var(--dark2);
    padding: 25px 0;
}

.footer-bottom p {
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 13px;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--light);
    font-size: 28px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
    animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 10px 40px rgba(37, 211, 102, 0.6); }
}

/* Top Bar */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #FFCE32;
    padding: 10px 0;
    font-size: 13px;
    z-index: 1001;
}

.top-bar-content {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.top-bar-text {
    color: #1D63FF;
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-text i {
    color: #1D63FF;
}

/* Floating Banner */
.floating-banner {
    position: fixed;
    top: 150px;
    right: 20px;
    z-index: 1002;
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.floating-banner-content {
    background: linear-gradient(135deg, #ff6600, #ff8533);
    color: #ffffff;
    padding: 15px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.3);
    position: relative;
}

.floating-close {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    background: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
}

.floating-banner-icon i {
    font-size: 28px;
}

.floating-banner-text {
    display: flex;
    flex-direction: column;
}

.floating-banner-text strong {
    font-size: 14px;
    font-weight: 700;
}

.floating-banner-text span {
    font-size: 12px;
    opacity: 0.9;
}

.floating-banner-btn {
    background: #ffffff;
    color: #ff6600;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.floating-banner-btn:hover {
    background: #000000;
    color: var(--light);
}

/* Urgency Section */
.urgency-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff6600, #ff8533);
}

.urgency-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    text-align: center;
}

.urgency-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.urgency-icon i {
    font-size: 36px;
    color: var(--light);
}

.urgency-text {
    max-width: 600px;
}

.urgency-text h2 {
    font-size: 36px;
    color: var(--light);
    margin-bottom: 10px;
}

.urgency-text p {
    color: rgba(255,255,255,0.9);
    font-size: 16px;
}

.urgency-highlight {
    margin-top: 10px;
    font-weight: 600;
    color: var(--light) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.urgency-highlight i {
    animation: bounce 1s infinite;
}

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

.btn-lg {
    padding: 18px 45px;
    font-size: 16px;
}

/* Trust Section */
.trust-section {
    padding: 60px 0;
    background: var(--gray);
}

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

.trust-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--light);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.trust-item i {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 15px;
}

.trust-item h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 5px;
}

.trust-item p {
    font-size: 13px;
    color: var(--text-light);
}

/* Responsive */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-content h1,
    .hero-content h2 {
        font-size: 52px;
    }
    
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        margin-top: 0;
    }
    
    #header {
        top: 0 !important;
    }
    
    #header.scrolled {
        top: 0 !important;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: var(--dark);
        padding: 20px;
        transition: left 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content h1,
    .hero-content h2 {
        font-size: 36px;
    }
    
    .hero-content h4 {
        font-size: 12px;
    }
    
    .hero-btns {
        flex-direction: column;
    }
    
    .section-header h2 {
        font-size: 38px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .election-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-content h2 {
        font-size: 32px;
    }
    
    .floating-banner {
        display: none;
    }
    
    .top-bar {
        display: none;
    }
    
    .urgency-content {
        flex-direction: column;
        gap: 25px;
    }
    
    .urgency-text h2 {
        font-size: 28px;
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .top-bar-content {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1,
    .hero-content h2 {
        font-size: 28px;
    }
    
    .btn {
        padding: 14px 25px;
        font-size: 12px;
    }
    
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
        right: 20px;
        bottom: 20px;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .contact-info {
        padding: 30px;
    }
}
