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

body {
    font-family: 'Comic Neue', cursive;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
    color: #1e293b;
    overflow-x: hidden;
    position: relative;
}

/* Tech Grid Background */
.tech-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(215, 172, 56, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(215, 172, 56, 0.08) 1px, transparent 1px),
        linear-gradient(rgba(10, 31, 68, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10, 31, 68, 0.03) 1px, transparent 1px);
    background-size: 60px 60px, 60px 60px, 20px 20px, 20px 20px;
    z-index: -3;
    animation: gridMove 25s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

/* Circuit Pattern */
.circuit-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    opacity: 0.08;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cdefs%3E%3ClinearGradient id='grad1' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' style='stop-color:%23d7ac38;stop-opacity:1' /%3E%3Cstop offset='100%25' style='stop-color:%230a1f44;stop-opacity:1' /%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M40 40h120v120H40z' fill='none' stroke='url(%23grad1)' stroke-width='1.5'/%3E%3Ccircle cx='40' cy='40' r='4' fill='%23d7ac38'/%3E%3Ccircle cx='160' cy='40' r='4' fill='%23d7ac38'/%3E%3Ccircle cx='160' cy='160' r='4' fill='%23d7ac38'/%3E%3Ccircle cx='40' cy='160' r='4' fill='%23d7ac38'/%3E%3Cpath d='M100 40v120M40 100h120' stroke='url(%23grad1)' stroke-width='1'/%3E%3Ccircle cx='100' cy='100' r='6' fill='%23d7ac38' opacity='0.7'/%3E%3Cpath d='M70 70h60v60H70z' fill='none' stroke='%230a1f44' stroke-width='0.8' opacity='0.5'/%3E%3C/svg%3E");
    background-size: 300px 300px;
    animation: circuitPulse 6s ease-in-out infinite;
}

@keyframes circuitPulse {
    0%, 100% { opacity: 0.06; transform: scale(1); }
    50% { opacity: 0.12; transform: scale(1.02); }
}

/* Header */
  .header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(215, 172, 56, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 32px rgba(15, 23, 42, 0.08);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    animation: logoFloat 3s ease-in-out infinite;
}

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

.logo-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d7ac38 0%, #d5ac73 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    font-weight: bold;
    box-shadow: 0 8px 32px rgba(215, 172, 56, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-icon:hover {
    transform: rotateY(180deg) scale(1.08);
    box-shadow: 0 16px 48px rgba(215, 172, 56, 0.35);
}

.logo-icon img {
    width: 55px;
}

.logo-text {
    font-size: 26px;
    font-weight: 800;
    background: linear-gradient(135deg, #0a1f44 0%, #1e3a5f 50%, #d7ac38 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.8px;
    animation: logoTextShine 3s ease-in-out infinite;
}

@keyframes logoTextShine {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
}

.nav-menu a {
    text-decoration: none;
    color: #1e293b;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    font-size: 15px;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, #d7ac38 0%, #d5ac73 100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

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

.nav-menu a:hover {
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(215, 172, 56, 0.3);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(215, 172, 56, 0.1);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #1e293b;
    margin: 3px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

/* Hamburger Animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 999;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.mobile-menu-overlay.active {
    right: 0;
}

.mobile-nav {
    padding: 100px 30px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav a {
    text-decoration: none;
    color: #1e293b;
    font-weight: 600;
    padding: 18px 20px;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 18px;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.mobile-nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #d7ac38 0%, #d5ac73 100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.mobile-nav a:hover::before {
    left: 0;
}

.mobile-nav a:hover {
    color: #ffffff;
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(215, 172, 56, 0.3);
}

/* Background overlay when menu is open */
.menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.menu-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 5% 80px;
}

.tech-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.binary-code {
    position: absolute;
    font-family: 'Comic Neue', cursive;
    font-size: 12px;
    color: rgba(215, 172, 56, 0.3);
    animation: binaryFlow 10s linear infinite;
}

.binary-code:nth-child(1) {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.binary-code:nth-child(2) {
    top: 30%;
    right: 10%;
    animation-delay: 2s;
}

.binary-code:nth-child(3) {
    bottom: 20%;
    left: 15%;
    animation-delay: 4s;
}

.binary-code:nth-child(4) {
    top: 60%;
    right: 20%;
    animation-delay: 6s;
}

@keyframes binaryFlow {
    0% {
        opacity: 0;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(-20px);
    }
    100% {
        opacity: 0;
        transform: translateY(-40px);
    }
}

.code-blocks {
    position: absolute;
    width: 200px;
    height: 100px;
    border: 2px solid rgba(215, 172, 56, 0.2);
    border-radius: 20px;
    background: rgba(215, 172, 56, 0.05);
}

.code-blocks:nth-child(5) {
    top: 15%;
    right: 5%;
    animation: codeFloat 6s ease-in-out infinite;
}

.code-blocks:nth-child(6) {
    bottom: 25%;
    right: 8%;
    animation: codeFloat 6s ease-in-out infinite 2s;
}

.code-blocks:nth-child(7) {
    top: 40%;
    left: 5%;
    animation: codeFloat 6s ease-in-out infinite 4s;
}

@keyframes codeFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-15px) rotate(2deg);
        opacity: 0.6;
    }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.hero-content {
    z-index: 2;
    animation: heroEntry 1.5s ease-out;
}

@keyframes heroEntry {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(215, 172, 56, 0.12), rgba(213, 172, 115, 0.08));
    border: 1px solid rgba(215, 172, 56, 0.25);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    color: #d7ac38;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(215, 172, 56, 0.15);
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 24px;
    color: #0f172a;
    line-height: 1.1;
    position: relative;
    letter-spacing: -2px;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #d7ac38 0%, #d5ac73 50%, #c9a366 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    animation: highlightShine 4s ease-in-out infinite;
}

@keyframes highlightShine {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: #64748b;
    font-weight: 500;
    line-height: 1.6;
}

.hero-features {
    list-style: none;
    margin-bottom: 40px;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #475569;
}

.hero-features li::before {
    content: '✓';
    background: linear-gradient(135deg, #d7ac38 0%, #d5ac73 100%);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 35px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Comic Neue', cursive;
}

.btn-primary {
    background: linear-gradient(135deg, #0a1f44 0%, #1e3a5f 50%, #2d4a6b 100%);
    color: #ffffff;
    box-shadow: 0 8px 32px rgba(10, 31, 68, 0.3);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(10, 31, 68, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.95));
    color: #d7ac38;
    border: 2px solid #d7ac38;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(215, 172, 56, 0.15);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #d7ac38 0%, #d5ac73 100%);
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(215, 172, 56, 0.35);
}

/* Contact Form */
.hero-form {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.95) 100%);
    border: 1px solid rgba(215, 172, 56, 0.15);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 40px rgba(15, 23, 42, 0.08);
    position: relative;
    overflow: hidden;
    max-width: 600px;
    width: 100%;
}

.hero-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #d7ac38, #d5ac73);
}

.form-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
    text-align: center;
}

.form-subtitle {
    color: #64748b;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 500;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1e293b;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid rgba(215, 172, 56, 0.3);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.8);
    color: #1e293b;
    font-family: 'Comic Neue', cursive;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #d7ac38;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 20px rgba(215, 172, 56, 0.2);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    color: #1e293b;
    background: white;
    padding: 10px;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #d7ac38 0%, #d5ac73 100%);
    color: #0a1f44;
    border: none;
    padding: 18px;
    border-radius: 12px;
    font-family: 'Comic Neue', cursive;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 32px rgba(215, 172, 56, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(215, 172, 56, 0.4);
}

/* Features Section */
.features {
    padding: 120px 5% 80px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.section-title h2 {
    font-size: 3.5rem;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 20px;
}

.section-title h2 .highlight {
    background: linear-gradient(135deg, #d7ac38 0%, #d5ac73 50%, #c9a366 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title p {
    font-size: 1.3rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 500;
}

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

.feature-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.95) 100%);
    border: 1px solid rgba(215, 172, 56, 0.15);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 40px rgba(15, 23, 42, 0.08);
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 60px rgba(215, 172, 56, 0.2);
    border-color: rgba(215, 172, 56, 0.25);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d7ac38 0%, #d5ac73 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 30px;
    color: white;
    box-shadow: 0 8px 32px rgba(215, 172, 56, 0.25);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
}

.feature-card p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 500;
}

/* Services Section */
.services {
    padding: 120px 5% 80px;
    background: linear-gradient(135deg, #0a1f44 0%, #1e3a5f 50%, #2d4a6b 100%);
    position: relative;
    color: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 80px;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(215, 172, 56, 0.2);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
}

.service-card:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 60px rgba(215, 172, 56, 0.3);
}

.service-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
}

.service-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 500;
}

/* Stats Section */
.stats {
    padding: 120px 5% 80px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 80px;
}

.stat-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.95) 100%);
    border: 1px solid rgba(215, 172, 56, 0.15);
    transition: all 0.4s ease;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 40px rgba(15, 23, 42, 0.08);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(215, 172, 56, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #d7ac38 0%, #d5ac73 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: #64748b;
    font-weight: 600;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a1f44 0%, #1e3a5f 100%);
    color: #ffffff;
    padding: 80px 5% 30px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-brand {
    max-width: 400px;
}

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

.footer-brand p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    font-weight: 500;
}

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

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(215, 172, 56, 0.1);
    border: 1px solid rgba(215, 172, 56, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d7ac38;
    text-decoration: none;
    font-size: 1.3rem;
    transition: all 0.4s ease;
}

.social-link:hover {
    background: #d7ac38;
    color: #0a1f44;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(215, 172, 56, 0.4);
}

.footer-section h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #d7ac38;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 12px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: #d7ac38;
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(215, 172, 56, 0.2);
    margin-top: 60px;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}


/* ===== RESPONSIVE STYLES ===== */

/* Large Screens - 1400px and above */
@media (min-width: 1400px) {
    .nav-container,
    .container {
        max-width: 1500px;
        padding: 15px 3%;
    }
    
    .hero-title {
        font-size: 4.5rem;
    }
    
    .section-title h2 {
        font-size: 4rem;
    }
    
    .hero-container {
        gap: 100px;
    }
}

/* Desktop Large - 1200px to 1399px */
@media (max-width: 1399px) and (min-width: 1200px) {
    .nav-container,
    .container {
        max-width: 1200px;
        padding: 15px 4%;
    }
    
    .hero-container {
        gap: 60px;
    }
    
    .hero-title {
        font-size: 3.8rem;
    }
    
    .features-grid,
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 50px;
    }
}

/* Desktop Medium - 992px to 1199px */
@media (max-width: 1199px) and (min-width: 992px) {
    .nav-container,
    .container {
        max-width: 960px;
        padding: 15px 4%;
    }
    
    .hero-container {
        gap: 50px;
    }
    
    .hero-title {
        font-size: 3.2rem;
    }
    
    .section-title h2 {
        font-size: 3rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 40px;
    }
    
    .hero-form {
        padding: 35px;
    }
    
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

/* Tablet Large - 768px to 991px */
@media (max-width: 991px) and (min-width: 768px) {
    .nav-menu {
        display: none !important;
    }
    
    .hamburger {
        display: flex !important;
    }
    
    .nav-container {
        padding: 12px 5%;
    }
    
    .hero {
        padding: 100px 5% 60px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title h2 {
        font-size: 2.8rem;
    }
    
    .features-grid,
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .hero-form {
        max-width: 500px;
        margin: 0 auto;
        padding: 30px;
    }
    
    .form-title {
        font-size: 1.6rem;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    body {
        padding-top: 85px;
    }
}

/* Tablet Medium - 576px to 767px */
@media (max-width: 767px) and (min-width: 576px) {
    .nav-menu {
        display: none !important;
    }
    
    .hamburger {
        display: flex !important;
    }
    
    .logo-text {
        font-size: 22px;
    }
    
    .logo-icon {
        width: 50px;
        height: 50px;
    }
    
    .logo-icon img {
        width: 47px;
    }
    
    .nav-container {
        padding: 12px 5%;
    }
    
    .hero {
        padding: 90px 5% 50px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title h2 {
        font-size: 2.5rem;
    }
    
    .section-title p {
        font-size: 1.1rem;
    }
    
    .features,
    .services,
    .stats {
        padding: 80px 5% 60px;
    }
    
    .features-grid,
    .services-grid,
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .feature-card,
    .service-card,
    .stat-card {
        padding: 30px 25px;
    }
    
    .footer {
        padding: 60px 5% 25px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .hero-form {
        max-width: 450px;
        margin: 0 auto;
        padding: 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-title {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .mobile-menu-overlay {
        width: 85%;
    }
    
    body {
        padding-top: 80px;
    }
}

/* Mobile Large - 425px to 575px */
@media (max-width: 575px) and (min-width: 425px) {
    .nav-menu {
        display: none !important;
    }
    
    .hamburger {
        display: flex !important;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .logo-icon {
        width: 45px;
        height: 45px;
    }
    
    .logo-icon img {
        width: 42px;
    }
    
    .nav-container {
        padding: 10px 4%;
    }
    
    .hero {
        padding: 80px 4% 40px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .section-title p {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .features,
    .services,
    .stats {
        padding: 70px 4% 50px;
    }
    
    .section-title {
        margin-bottom: 60px;
    }
    
    .features-grid,
    .services-grid,
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card,
    .service-card,
    .stat-card {
        padding: 25px 20px;
        margin: 0 10px;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .footer {
        padding: 50px 4% 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .hero-form {
        max-width: 380px;
        margin: 0 auto;
        padding: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-title {
        font-size: 1.4rem;
    }
    
    .form-group input,
    .form-group select {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    .submit-btn {
        padding: 15px;
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 25px;
        justify-content: center;
    }
    
    .mobile-menu-overlay {
        width: 90%;
    }
    
    .mobile-nav {
        padding: 80px 20px 20px;
    }
    
    .mobile-nav a {
        padding: 15px 18px;
        font-size: 16px;
    }
    
    body {
        padding-top: 75px;
    }
}

/* Mobile Medium - 375px to 424px */
@media (max-width: 424px) and (min-width: 375px) {
    .nav-menu {
        display: none !important;
    }
    
    .hamburger {
        display: flex !important;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    .logo-icon {
        width: 42px;
        height: 42px;
    }
    
    .logo-icon img {
        width: 39px;
    }
    
    .nav-container {
        padding: 10px 3%;
    }
    
    .hero {
        padding: 70px 3% 35px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .section-title p {
        font-size: 0.95rem;
        padding: 0 15px;
    }
    
    .features,
    .services,
    .stats {
        padding: 60px 3% 40px;
    }
    
    .section-title {
        margin-bottom: 50px;
    }
    
    .features-grid,
    .services-grid,
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    
    .feature-card,
    .service-card,
    .stat-card {
        padding: 22px 18px;
        margin: 0 5px;
    }
    
    .feature-icon {
        width: 65px;
        height: 65px;
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .feature-card h3,
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .footer {
        padding: 45px 3% 18px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .hero-form {
        max-width: 350px;
        margin: 0 auto;
        padding: 18px;
    }
    
    .form-title {
        font-size: 1.3rem;
    }
    
    .form-group input,
    .form-group select {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .submit-btn {
        padding: 13px;
        font-size: 0.95rem;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .mobile-menu-overlay {
        width: 95%;
    }
    
    .mobile-nav {
        padding: 75px 15px 15px;
        gap: 15px;
    }
    
    .mobile-nav a {
        padding: 14px 16px;
        font-size: 15px;
    }
    
    body {
        padding-top: 70px;
    }
}

/* Mobile Small - 320px to 374px */
@media (max-width: 374px) {
    .nav-menu {
        display: none !important;
    }
    
    .hamburger {
        display: flex !important;
    }
    
    .logo-text {
        font-size: 16px;
    }
    
    .logo-icon {
        width: 38px;
        height: 38px;
    }
    
    .logo-icon img {
        width: 35px;
    }
    
    .nav-container {
        padding: 8px 3%;
    }
    
    .hero {
        padding: 60px 3% 30px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 1.9rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .section-badge {
        font-size: 12px;
        padding: 8px 18px;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .section-title p {
        font-size: 0.9rem;
        padding: 0 20px;
    }
    
    .features,
    .services,
    .stats {
        padding: 50px 3% 35px;
    }
    
    .section-title {
        margin-bottom: 40px;
    }
    
    .features-grid,
    .services-grid,
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feature-card,
    .service-card,
    .stat-card {
        padding: 20px 15px;
        margin: 0;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
        margin-bottom: 18px;
    }
    
    .feature-card h3,
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .feature-card p,
    .service-card p {
        font-size: 0.9rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .footer {
        padding: 40px 3% 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 18px;
        text-align: center;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .hero-form {
        max-width: 300px;
        margin: 0 auto;
        padding: 15px;
    }
    
    .form-title {
        font-size: 1.2rem;
    }
    
    .form-subtitle {
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group select {
        padding: 9px 10px;
        font-size: 0.85rem;
    }
    
    .submit-btn {
        padding: 12px;
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 10px 15px;
        font-size: 13px;
        width: 100%;
        max-width: 250px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .mobile-menu-overlay {
        width: 100%;
    }
    
    .mobile-nav {
        padding: 70px 10px 10px;
        gap: 12px;
    }
    
    .mobile-nav a {
        padding: 12px 14px;
        font-size: 14px;
    }
    
    .hero-features li {
        font-size: 0.9rem;
    }
    
    .hero-features li::before {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }
    
    body {
        padding-top: 65px;
    }
}

/* Extra Small Mobile - 280px to 319px */
@media (max-width: 319px) {
    .nav-menu {
        display: none !important;
    }
    
    .hamburger {
        display: flex !important;
    }
    
    .logo-text {
        font-size: 14px;
    }
    
    .logo-icon {
        width: 35px;
        height: 35px;
    }
    
    .logo-icon img {
        width: 32px;
    }
    
    .nav-container {
        padding: 8px 2%;
    }
    
    .hero {
        padding: 50px 2% 25px;
    }
    
    .hero-title {
        font-size: 1.7rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
    }
    
    .section-title h2 {
        font-size: 1.6rem;
    }
    
    .section-title p {
        font-size: 0.85rem;
        padding: 0 10px;
    }
    
    .features,
    .services,
    .stats {
        padding: 40px 2% 30px;
    }
    
    .feature-card,
    .service-card,
    .stat-card {
        padding: 18px 12px;
    }
    
    .feature-icon {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }
    
    .hero-form {
        max-width: 260px;
        padding: 12px;
    }
    
    .form-title {
        font-size: 1.1rem;
    }
    
    .form-group input,
    .form-group select {
        padding: 8px 8px;
        font-size: 0.8rem;
    }
    
    .btn {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .mobile-nav {
        padding: 60px 8px 8px;
    }
    
    .mobile-nav a {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    body {
        padding-top: 60px;
    }
}

