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

:root {
    --primary-color: #0066cc;
    --secondary-color: #ff4444;
    --accent-color: #00ff88;
    --dark-color: #1a1a1a;
    --light-color: #ffffff;
    --gray-light: #f8faff;
    --gray-medium: #888888;
    --danger-color: #ff4444;
    --warning-color: #ffaa00;
    --success-color: #00ff88;
}

body {
    font-family: 'Gotham', 'Montserrat', 'Geist', 'Inter', Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden;
    background-color: var(--dark-color);
    margin: 0;
    padding: 0;
}

.hero-title, .logo-text, .preloader-logo, .section-header h2, .solution-item h3, .alert-card h3, .contact-content h2 {
    font-family: 'Gotham', 'Montserrat', 'Geist', 'Inter', Arial, sans-serif;
    letter-spacing: 0.02em;
    font-weight: 800;
    text-transform: uppercase;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.3s ease-out;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    backface-visibility: hidden;
    perspective: 1000px;
    will-change: transform, opacity;
    transform: translateZ(0);
}

#preloader.zooming {
    animation: zoomThrough 1.2s cubic-bezier(0.4, 0.0, 0.2, 1) forwards;
}

@keyframes zoomThrough {
    0% {
        transform: scale3d(1, 1, 1) translateZ(0);
        filter: blur(0px);
        opacity: 1;
    }
    40% {
        transform: scale3d(2.5, 2.5, 1) translateZ(0);
        filter: blur(0px);
        opacity: 1;
    }
    80% {
        transform: scale3d(8, 8, 1) translateZ(0);
        filter: blur(1px);
        opacity: 0.6;
    }
    100% {
        transform: scale3d(12, 12, 1) translateZ(0);
        filter: blur(2px);
        opacity: 0;
    }
}

.preloader-content {
    text-align: center;
    transform-origin: center;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    will-change: transform;
    transform: translateZ(0);
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.preloader-logo-image {
    height: 100px;
    width: auto;
    object-fit: contain;
    animation: pulse 1.5s ease-in-out infinite;
}

.preloader-text-container {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.preloader-logo {
    font-size: 4rem;
    font-weight: 800;
    color: #4DA6FF;
    margin-bottom: 0.5rem;
    animation: pulse 1.5s ease-in-out infinite;
}

.preloader-subtitle {
    font-size: 1.2rem;
    color: var(--accent-color);
    letter-spacing: 0.5rem;
    font-weight: 300;
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1) translateZ(0); 
    }
    50% { 
        transform: scale(1.03) translateZ(0); 
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 0.75rem 0;
}

.navbar.scrolled {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    line-height: 1;
}

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-text-container {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--light-color);
}

.logo-subtitle {
    font-size: 0.8rem;
    color: var(--accent-color);
    letter-spacing: 0.2rem;
    font-weight: 300;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--light-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

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

.get-started-nav-btn {
    background: var(--accent-color);
    color: var(--dark-color) !important;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-color);
    font-size: 0.9rem;
    line-height: 1;
    display: flex;
    align-items: center;
    height: auto;
}

.get-started-nav-btn:hover {
    background: transparent;
    color: var(--accent-color) !important;
    border-color: var(--accent-color);
}

.get-started-nav-btn::after {
    display: none;
}

/* Hero Section Full Height Scroll */
.hero {
    position: relative;
    height: 140vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 140vh;
    z-index: -2;
    overflow: hidden;
}

.hero-image {
    width: 100vw;
    height: 140vh;
    object-fit: cover;
    object-position: center top;
    pointer-events: none;
    user-select: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.hero-content {
    width: 100vw;
    height: 140vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-color);
    max-width: 800px;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

.typing-container {
    position: relative;
    z-index: 11;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.typed-text {
    color: var(--accent-color);
}

.cursor {
    color: var(--accent-color);
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.6;
}

/* Animation Container */
.animation-container {
    position: relative;
    width: 100%;
    height: 400px;
    margin: 3rem 0;
}

.animation-container.overlay-align {
    position: absolute;
    left: 0;
    top: 0;
    width: 100vw;
    height: 140vh;
    pointer-events: none;
    z-index: 3;
    display: block;
}

.parallax-plane {
    position: absolute;
    z-index: 12;
    width: 600px;
    max-width: 40vw;
    height: auto;
    left: 50%;
    top: 30%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.birds-container {
    position: absolute;
    width: 100vw;
    height: 140vh;
    left: 0;
    top: 0;
    z-index: 8;
    pointer-events: none;
}

.bird {
    position: absolute;
    opacity: 0;
    z-index: 9;
    will-change: transform, opacity;
    width: 160px;
    height: auto;
}

.tracking-box {
    position: absolute;
    border: 1px solid var(--secondary-color);
    background: rgba(255, 68, 68, 0.1);
    z-index: 5;
    pointer-events: none;
    transition: all 0.05s ease-out;
}

.tracking-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 7;
    overflow: visible;
}

.tracking-line {
    stroke: var(--secondary-color);
    stroke-width: 3;
    opacity: 0.8;
    animation: lineAppear 0.5s ease-out forwards;
    transition: all 0.1s ease-out;
}

@keyframes lineAppear {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 0.7;
    }
}

@keyframes dashMove {
    0% {
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dashoffset: -12;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--light-color);
    border-bottom: 2px solid var(--light-color);
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

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

/* Stats Section */
.stats-section {
    padding: 6rem 0;
    background: var(--gray-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-item p {
    font-size: 1.1rem;
    color: var(--gray-medium);
}

/* Solution Section */
.solution-section {
    padding: 6rem 0;
}

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

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--light-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.section-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.solution-item {
    text-align: center;
    padding: 2.8rem;
    border-radius: 14px;
    background: var(--light-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 1.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: translateZ(0);
    will-change: transform, box-shadow;
    border: 2px solid transparent;
}

.solution-item:hover {
    transform: translateY(-12px) scale(1.15) translateZ(0);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 0 25px rgba(0, 102, 204, 0.08);
    animation: float-hover 8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    border-color: rgba(0, 102, 204, 0.2);
}

@keyframes float-hover {
    0%, 100% {
        transform: translateY(-12px) scale(1.15) translateZ(0);
    }
    50% {
        transform: translateY(-16px) scale(1.15) translateZ(0);
    }
}

.solution-icon {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-icon img {
    max-width: 168px !important;
    max-height: 168px !important;
    display: block;
    margin: 0 auto;
    transition: all 1.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: translateZ(0);
}

.solution-item:hover .solution-icon img {
    transform: scale(1.25) translateZ(0);
}

.solution-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.solution-item p {
    color: var(--gray-medium);
}

.solution-grid .solution-item:nth-child(2) .solution-icon img {
    max-width: 320px !important;
    max-height: 320px !important;
    transition: all 1.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: translateZ(0);
}

.solution-grid .solution-item:nth-child(2):hover .solution-icon img {
    transform: scale(1.25) translateZ(0);
}

.solution-grid .solution-item:nth-child(3) .solution-icon img {
    max-width: 202px !important;
    max-height: 202px !important;
    transition: all 1.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: translateZ(0);
}

.solution-grid .solution-item:nth-child(3):hover .solution-icon img {
    transform: scale(1.25) translateZ(0);
}

.learn-more-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--light-color);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    margin-top: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.learn-more-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.4);
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
}

.learn-more-btn:active {
    transform: translateY(0) scale(1);
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

/* Modal styling */
.learn-more-modal .modal-content h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.learn-more-modal .modal-content h4 {
    color: var(--dark-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
}

.learn-more-modal .modal-content p {
    color: var(--gray-medium);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.learn-more-modal .modal-content ul {
    list-style: none;
    margin-bottom: 1rem;
}

.learn-more-modal .modal-content li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 1.5rem;
    color: var(--gray-medium);
}

.learn-more-modal .modal-content li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.learn-more-modal .modal-content li:last-child {
    border-bottom: none;
}

.technical-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 6rem;
}

.tech-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.tech-content h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: white;
}

.tech-content ul {
    list-style: none;
}

.tech-content li {
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 2rem;
    color: var(--light-color);
}

.tech-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Alerts Section */
.alerts-section {
    padding: 6rem 0;
    background: var(--gray-light);
}

.alerts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.alert-card {
    background: var(--light-color);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--primary-color);
    transition: transform 0.3s ease;
}

.alert-card:hover {
    transform: translateY(-5px);
}

.alert-card.priority-high {
    border-left-color: var(--danger-color);
}

.alert-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.alert-badge {
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.alert-badge.high {
    background: var(--danger-color);
    color: var(--light-color);
}

.alert-badge.medium {
    background: var(--warning-color);
    color: var(--dark-color);
}

.alert-date {
    color: var(--gray-medium);
    font-size: 0.9rem;
}

.alert-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.alert-card p {
    color: var(--gray-medium);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.alert-impact {
    display: flex;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.impact-label {
    font-weight: 600;
    color: var(--dark-color);
}

.impact-value {
    color: var(--danger-color);
    font-weight: 600;
}

/* Live Monitoring */
.live-monitoring {
    background: var(--dark-color);
    color: var(--light-color);
    padding: 3rem;
    border-radius: 15px;
    margin-top: 3rem;
}

.live-monitoring h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.monitoring-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.monitor-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.monitor-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.monitor-value {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.status-indicator.online {
    background: var(--success-color);
    box-shadow: 0 0 10px var(--success-color);
}

.status-indicator.warning {
    background: var(--warning-color);
    box-shadow: 0 0 10px var(--warning-color);
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: var(--dark-color);
    color: var(--light-color);
    text-align: center;
}

.contact-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    color: var(--light-color);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-button.buy {
    background: var(--dark-color);
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.cta-button.buy:hover {
    background: var(--dark-color);
    border-color: var(--accent-color);
    color: var(--accent-color);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.cta-button.info {
    background: var(--dark-color);
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.cta-button.info:hover {
    background: var(--dark-color);
    border-color: var(--accent-color);
    color: var(--accent-color);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

/* Fade-in Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .technical-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .animation-container {
        display: none;
    }
    
    .animated-plane {
        display: none;
    }
    
    .chart-stats-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 1rem;
    }
    
    .stats-container .stats-grid {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .stats-container .stat-item {
        flex: 1;
        min-width: 200px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .stats-grid,
    .solution-grid,
    .alerts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .chart-stats-container {
        gap: 1.5rem;
    }
    
    .stats-container .stats-grid {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stats-container .stat-item {
        min-width: auto;
    }
    
    .stats-container .stat-item h3 {
        font-size: 2rem;
    }
} 

/* Responsive tweaks for overlay alignment */
@media (max-width: 900px) {
    .hero, .hero-background, .hero-image, .hero-content, .animation-container.overlay-align, .tracking-lines {
        height: 100vh !important;
        min-height: 0;
    }
    .animated-plane {
        width: 80px;
        top: 15%;
    }
}

/* Hide all content below hero until after full image */
.stats-section, .solution-section, .alerts-section, .contact-section {
    margin-top: 0;
    padding-top: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.drone-combined-chart-section {
    padding: 5rem 0 2rem 0;
    background: var(--gray-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 600px;
}

.drone-combined-chart-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.chart-stats-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    width: 100%;
    max-width: 1200px;
    align-items: stretch;
    margin-top: 2rem;
}

.chart-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.stats-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.stats-container .stats-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: left;
}

.stats-container .stat-item {
    background: var(--dark-color);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border-left: 4px solid var(--accent-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stats-container .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.stats-container .stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stats-container .stat-item p {
    font-size: 1rem;
    color: var(--accent-color);
    line-height: 1.4;
    opacity: 0.9;
}

#droneChart {
    width: 100%;
    height: 100%;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    border: 2px solid var(--accent-color);
    background: var(--dark-color) !important;
}

.drone-combined-chart-section .section-header h2 {
    color: var(--dark-color) !important;
    text-shadow: none;
    font-weight: 800;
    margin-bottom: 1rem;
}

.drone-combined-chart-section .section-header p {
    color: var(--dark-color);
    opacity: 0.8;
}

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

.solution-section .section-header h2 {
    color: var(--accent-color) !important;
    margin-bottom: 0.5rem;
}

.solution-cursor {
    color: var(--accent-color);
    animation: blink 1s infinite;
}

/* Solution header sticky behavior */
.solution-header-sticky {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1001;
    transition: all 0.3s ease;
    min-width: 300px;
    text-align: center;
}

.solution-header-sticky h2 {
    font-size: 2.5rem !important;
    margin: 0 !important;
    color: var(--accent-color) !important;
    font-weight: 700;
    white-space: nowrap;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.solution-header-sticky .solution-cursor {
    color: var(--accent-color);
    animation: blink 1s infinite;
}

/* Hide original header when sticky is active */
.solution-section.sticky-active .section-header h2 {
    opacity: 0;
    pointer-events: none;
}

.hospital-hero {
    position: relative;
    height: 140vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hospital-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 140vh;
    z-index: -2;
    overflow: hidden;
}

.hospital-hero-image {
    width: 100vw;
    height: 140vh;
    object-fit: cover;
    object-position: center top;
    pointer-events: none;
    user-select: none;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 90%);
}

.hospital-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.heli-anim {
    position: absolute;
    z-index: 10;
    right: 50vw;
    bottom: 78vh;
    width: 64vw;
    height: auto;
    transform-origin: bottom right;
    pointer-events: none;
    user-select: none;
    will-change: transform, right, bottom;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.drone-anim {
    position: absolute;
    z-index: 10;
    left: 85vw;
    bottom: 10vh;
    width: 8vw;
    height: auto;
    transform-origin: center;
    pointer-events: none;
    user-select: none;
    will-change: transform, left, bottom;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Hospital tracking lines specific styling */
#hospitalTrackingLines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9;
    overflow: visible;
    will-change: auto;
}

#hospitalTrackingLines .tracking-line {
    stroke: #ff4444;
    stroke-width: 3;
    opacity: 0.9;
    stroke-linecap: round;
    will-change: auto;
    transition: none;
}

/* Hospital Typing Animation */
.hospital-typing-container {
    position: absolute;
    z-index: 11;
    left: 50%;
    bottom: 65vh;
    transform: translateX(-50%);
    text-align: center;
    pointer-events: none;
}

.hospital-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--light-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hospital-typed-text {
    color: var(--accent-color);
}

.hospital-cursor {
    color: var(--accent-color);
    animation: blink 1s infinite;
}

.hospital-hero-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--light-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin-top: 1rem;
    max-width: 600px;
    text-align: center;
    opacity: 0.95;
    letter-spacing: 0.5px;
}

.hospital-bottom-subtitle-container {
    position: absolute;
    z-index: 11;
    left: 50%;
    bottom: 15vh;
    transform: translateX(-50%);
    text-align: center;
    pointer-events: none;
}

/* Drone Animation Container */
.drone-animation-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
}

/* Small drones that fly behind text boxes */
.drone-small {
    position: absolute;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
    opacity: 1 !important;
    background: rgba(0,255,0,0.1);
    border: 1px solid limegreen;
}

.drone-small.drone-left {
    transform: translateX(-100px);
}

.drone-small.drone-right {
    transform: translateX(calc(100vw + 100px));
}

/* Large drones that fly above elements */
.drone-large {
    position: absolute;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease;
    transform: translateX(-100px);
    opacity: 1 !important;
    background: rgba(0,255,0,0.1);
    border: 1px solid limegreen;
}

/* Drone animation states */
.drone-small.animate,
.drone-large.animate {
    opacity: 1;
    transition: transform 2s ease-in-out, opacity 0.3s ease;
}

.drone-small.drone-left.animate {
    transform: translateX(calc(100vw + 100px)) rotate(5deg);
}

.drone-small.drone-right.animate {
    transform: translateX(-100px) rotate(-5deg);
}

.drone-large.animate {
    transform: translateX(calc(100vw + 100px)) rotate(3deg);
}

/* Drone hover effects and additional styling */
.drone-small img,
.drone-large img {
    filter: drop-shadow(0 4px 8px rgba(0, 255, 136, 0.3));
    transition: filter 0.3s ease;
    display: block;
}

.drone-small.animate img,
.drone-large.animate img {
    filter: drop-shadow(0 8px 16px rgba(0, 255, 136, 0.5));
}

/* Add subtle glow effect to drones */
.drone-small::before,
.drone-large::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.drone-small.animate::before,
.drone-large.animate::before {
    opacity: 1;
}

/* Ensure chart and stats are above small drones but below large drones */
.chart-stats-container {
    position: relative;
}

.drone-small, .drone-large {
    z-index: 1001 !important;
}

.chart-stats-container, .chart-container, .stats-container, .stats-grid, .stat-item {
    z-index: auto !important;
}

.drone-flyer {
    position: absolute;
    z-index: 1001;
    pointer-events: none;
    will-change: transform, top, left;
    border: 2px solid #ff4444;
    box-sizing: border-box;
}

/* Get Started Page Styles */
.get-started-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.get-started-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.get-started-image {
    width: 100vw;
    height: auto;
    object-fit: contain;
    object-position: center;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.get-started-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(26, 26, 26, 0.6) 100%);
    z-index: -1;
}

.get-started-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem 2rem 2rem;
    z-index: 1;
}

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

.get-started-header h1 {
    font-size: 5.25rem;
    font-weight: 800;
    color: var(--light-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    white-space: nowrap;
    width: 100vw;
    text-align: center;
    transform: translateX(-50%);
    margin-left: 50%;
}

.get-started-subtitle {
    font-size: 1.3rem;
    color: var(--light-color);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    font-weight: 400;
}

.get-started-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.get-started-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 6.75rem 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.get-started-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-color);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.get-started-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color) !important;
    margin-bottom: 1rem;
}

.get-started-card p {
    color: var(--dark-color);
    opacity: 0.8;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.get-started-card ul {
    list-style: none;
    padding: 0;
}

.get-started-card li {
    color: var(--dark-color);
    opacity: 0.7;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.get-started-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.get-started-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.get-started-cta.coming-soon {
    background: rgba(0, 255, 136, 0.1);
    border: 2px solid var(--success-color);
    position: relative;
    overflow: hidden;
    background-image: url('Untitled.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 45rem;
}

.get-started-cta.coming-soon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('untiteled 2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    z-index: 0;
}

.get-started-cta.coming-soon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
    pointer-events: none;
}

.get-started-cta.coming-soon.bg-2::before {
    opacity: 1;
}

.get-started-cta.coming-soon.bg-3 {
    background-image: url('Untitled 3.jpg');
}

.get-started-cta.coming-soon.bg-3::before {
    opacity: 0;
}

.get-started-cta.coming-soon h2,
.get-started-cta.coming-soon p,
.get-started-cta.coming-soon .contact-methods {
    position: relative;
    z-index: 2;
}

.get-started-cta.coming-soon h2 {
    color: var(--success-color) !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.get-started-cta.coming-soon p {
    color: var(--light-color);
    opacity: 1;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.contact-methods {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button.primary {
    background: var(--accent-color);
    color: var(--dark-color);
    border: 2px solid var(--accent-color);
}

.cta-button.primary:hover {
    background: transparent;
    color: var(--accent-color);
}

.cta-button.secondary {
    background: transparent;
    color: var(--light-color);
    border: 2px solid var(--light-color);
}

.cta-button.secondary:hover {
    background: var(--light-color);
    color: var(--dark-color);
}

/* Pricing Section */
.pricing-section {
    background: transparent;
    padding: 6rem 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 6.75rem 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.pricing-card.featured {
    border-color: #22c55e;
    transform: scale(1.05);
}

.pricing-card .pricing-header h3 {
    font-size: 1.8rem;
    color: var(--dark-color) !important;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pricing-placeholder {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 2rem 0;
}

.pricing-placeholder p {
    color: var(--dark-color);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: var(--dark-color);
    font-size: 0.9rem;
    opacity: 0.8;
    position: relative;
    padding-left: 1.5rem;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.pricing-header p {
    color: var(--gray-medium);
    margin-bottom: 2rem;
}

.pricing-cta {
    display: inline-block;
    background: var(--accent-color);
    color: var(--dark-color);
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-color);
}

.pricing-cta:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

/* Pricing Image Styles */
.pricing-image-container {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    position: relative;
    transition: all 0.3s ease;
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.pricing-card:hover .pricing-image-container {
    transform: scale(1.25);
    border-color: var(--accent-color);
}

.pricing-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
    filter: saturate(1.7);
}

.pricing-card:hover .pricing-image {
    transform: scale(1.15);
}

/* FAQ Section */
.faq-section {
    background: transparent;
    padding: 6rem 0;
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.faq-item h3 {
    font-size: 1.3rem;
    color: var(--light-color) !important;
    font-weight: 600;
    margin-bottom: 1rem;
}

.faq-item p {
    color: var(--light-color);
    opacity: 0.9;
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta-section {
    background: transparent;
    padding: 6rem 0;
    margin-bottom: 2rem;
}

/* Background View Section */
.background-view-section {
    background: transparent;
    padding: 20rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.background-view-section .container {
    text-align: center;
}

.final-cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--light-color) !important;
    margin-bottom: 1rem;
    text-transform: uppercase;
    text-align: center;
}

.final-cta-content p {
    font-size: 1.3rem;
    color: var(--light-color);
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for Get Started Page */
@media (max-width: 768px) {
    .get-started-header h1 {
        font-size: 3.75rem;
        white-space: nowrap;
        width: 100vw;
        text-align: center;
        transform: translateX(-50%);
        margin-left: 50%;
    }
    
    .get-started-subtitle {
        font-size: 1.1rem;
    }
    
    .get-started-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .get-started-card {
        padding: 2rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .final-cta-content h2 {
        font-size: 2rem;
    }
    
    .contact-methods,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .get-started-content {
        padding: 1rem;
    }
    
    .get-started-header h1 {
        font-size: 7vw;
        white-space: nowrap;
        width: 100vw;
        text-align: center;
        transform: translateX(-50%);
        margin-left: 50%;
    }
    
    .get-started-card {
        padding: 1.5rem;
    }
    
    .pricing-card {
        padding: 2rem;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
} 

/* Contact Button Styles */
.contact-button-container {
    margin-top: 30px;
    text-align: center;
    z-index: 100;
    position: relative;
}

.contact-btn {
    background: linear-gradient(135deg, var(--accent-color), #00cc77);
    border: none;
    border-radius: 50px;
    padding: 15px 35px;
    color: var(--dark-color);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

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

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 255, 136, 0.4);
    background: linear-gradient(135deg, #00ff99, var(--accent-color));
}

.contact-btn-icon {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.contact-btn:hover .contact-btn-icon {
    transform: scale(1.2) rotate(10deg);
}

/* Contact Modal Styles */
.contact-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    animation: modalFadeIn 0.3s ease-out;
}

.contact-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.contact-modal-content {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid rgba(0, 255, 136, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    animation: modalSlideIn 0.4s ease-out;
    position: relative;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px) scale(0.9);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.contact-modal-header {
    padding: 30px 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 255, 136, 0.1);
    margin-bottom: 20px;
}

.contact-modal-header h2 {
    color: var(--light-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(135deg, var(--accent-color), #4DA6FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-modal-close {
    background: none;
    border: none;
    color: var(--gray-medium);
    font-size: 2rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-modal-close:hover {
    color: var(--accent-color);
    background: rgba(0, 255, 136, 0.1);
    transform: rotate(90deg);
}

.contact-modal-body {
    padding: 0 30px 30px;
}

.contact-modal-subtitle {
    color: var(--gray-medium);
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--light-color);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.form-group.focused label {
    color: var(--accent-color);
    transform: translateY(-2px);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 10px;
    padding: 12px 16px;
    color: var(--light-color);
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(0, 255, 136, 0.1);
    box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1);
}

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

.form-group select {
    cursor: pointer;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-medium);
    opacity: 0.8;
}

.form-actions {
    margin-top: 10px;
}

.contact-submit-btn {
    background: linear-gradient(135deg, var(--accent-color), #00cc77);
    border: none;
    border-radius: 50px;
    padding: 15px 40px;
    color: var(--dark-color);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-submit-btn:hover {
    background: linear-gradient(135deg, #00ff99, var(--accent-color));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.4);
}

.contact-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.submit-spinner {
    display: none;
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid var(--dark-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.contact-submit-btn.loading .submit-text {
    display: none;
}

.contact-submit-btn.loading .submit-spinner {
    display: block;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.contact-form-result {
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.contact-form-result.success {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
}

.contact-form-result.error {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid var(--danger-color);
    color: var(--danger-color);
}

/* Responsive Contact Styles */
@media (max-width: 768px) {
    .contact-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .contact-modal-content {
        margin: 10px;
        max-height: 95vh;
    }
    
    .contact-modal-header {
        padding: 20px 20px 0;
    }
    
    .contact-modal-header h2 {
        font-size: 1.5rem;
    }
    
    .contact-modal-body {
        padding: 0 20px 20px;
    }
    
    .contact-button-container {
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .contact-btn {
        padding: 10px 20px;
        font-size: 0.95rem;
        gap: 8px;
    }
    
    .contact-modal-header h2 {
        font-size: 1.3rem;
    }
    
    .contact-modal-subtitle {
        font-size: 1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 14px;
        font-size: 0.95rem;
    }
} 