/* Base Styles */
:root {
    /* Core Colors */
    --pumpkin: #ff6d00;
    --safety-orange: #ff7900;
    --ut-orange: #ff8500;
    --princeton-orange: #ff9100;
    --orange-peel: #ff9e00;
    --russian-violet: #240046;
    --persian-indigo: #3c096c;
    --tekhelet: #5a189a;
    --french-violet: #7b2cbf;
    --amethyst: #9d4edd;
    
    /* Functional Colors */
    --bg-primary: var(--russian-violet);
    --bg-secondary: var(--persian-indigo);
    --card-bg: rgba(255, 255, 255, 0.03);
    --border-color: rgba(255, 255, 255, 0.1);
    --text-muted: rgba(255, 255, 255, 0.6);
    --text-body: rgba(255, 255, 255, 0.8);
    --text-heading: #ffffff;
    --text-emphasis: var(--orange-peel);
    --overlay-dark: var(--russian-violet);
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Height of fixed navbar */
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-body);
    background-color: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }

.subtitle {
    color: var(--outer-space);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    display: block;
}

/* Layout Components */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    margin-top: 2rem;
}

/* Sections */
section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

/* Cards & Glass Effect */
.glass {
    background: rgba(248, 249, 250, 0.7);
    border: 1px solid var(--french-gray);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 109, 0, 0.1),
        transparent 50%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--orange-peel);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-card:hover::after {
    opacity: 1;
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--pumpkin), var(--princeton-orange));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.feature-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 20px rgba(255, 109, 0, 0.2);
}

/* Buttons */
.btn {
    position: relative;
    padding: 1rem 2rem;
    border-radius: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.btn-primary {
    background: var(--pumpkin);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 109, 0, 0.3);
}

.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: 0.5s;
}

.btn-primary:hover {
    background: var(--safety-orange);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 109, 0, 0.4);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-outline {
    border-color: var(--orange-peel);
    color: var(--orange-peel);
}

.btn-outline:hover {
    background: var(--orange-peel);
    color: var(--russian-violet);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(73, 80, 87, 0.15);
}

.arrow-icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2;
    transition: transform 0.3s ease;
}

.btn:hover .arrow-icon {
    transform: translateX(4px);
}

/* Button pulse animation for primary CTA */
.btn-primary::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--outer-space);
    border-radius: inherit;
    opacity: 0.12;
    z-index: -1;
    animation: pulse-border 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse-border {
    0%, 100% { transform: scale(1); opacity: 0.12; }
    50% { transform: scale(1.1); opacity: 0; }
}

/* Animations */
@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.6s ease forwards;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.floating-svg {
    animation: float 6s ease-in-out infinite;
}

/* Modern Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(36, 0, 70, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--text-heading);
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-icon {
    width: 40px;
    height: 40px;
    color: var(--orange-peel);
    transition: transform 0.3s ease;
}

.logo:hover .logo-icon {
    transform: rotate(-10deg);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-item {
    color: var(--text-body);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--orange-peel);
    transition: width 0.3s ease;
}

.nav-item:hover,
.nav-item.active {
    color: var(--text-heading);
}

.nav-item:hover::before,
.nav-item.active::before {
    width: 100%;
}

.nav-cta {
    position: relative;
    padding: 0.8rem 1.8rem;
    background: linear-gradient(135deg, var(--pumpkin), var(--orange-peel));
    border: none;
    border-radius: 100px;
    color: white;
    font-weight: 500;
    font-size: 1.05rem;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--orange-peel), var(--pumpkin));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 109, 0, 0.2);
}

.nav-cta:hover::before {
    opacity: 1;
}

.nav-cta span {
    position: relative;
    z-index: 1;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 100;
}

.mobile-menu-btn span {
    display: block;
    width: 30px;
    height: 2px;
    background: var(--text-heading);
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        flex-direction: column;
        background: var(--persian-indigo);
        padding: 6rem 2rem;
        gap: 2rem;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-links.active {
        right: 0;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-cta {
        width: 100%;
        text-align: center;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--russian-violet), var(--persian-indigo));
    overflow: hidden;
    padding: 120px 0;
}

.hero-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--pumpkin), var(--orange-peel));
    filter: blur(60px);
    opacity: 0.2;
}

.shape-1 {
    width: 500px;
    height: 500px;
    top: -250px;
    right: -100px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -150px;
    background: linear-gradient(45deg, var(--french-violet), var(--amethyst));
}

.split-hero {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content-wrapper {
    position: relative;
}

.hero-uptitle {
    margin-bottom: 2rem;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    backdrop-filter: blur(10px);
}

.hero-tag-dot {
    width: 8px;
    height: 8px;
    background: var(--orange-peel);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-tag-text {
    color: var(--text-heading);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.mega-title {
    font-size: 4.5rem;
    line-height: 1.1;
    color: var(--text-heading);
    margin-bottom: 1.5rem;
}

.title-highlight {
    position: relative;
    display: inline-block;
}

.highlight-text {
    background: linear-gradient(to right, var(--pumpkin), var(--orange-peel));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 1;
}

.highlight-shape {
    position: absolute;
    bottom: -5px;
    left: -10px;
    width: calc(100% + 20px);
    height: 24px;
    fill: var(--pumpkin);
    opacity: 0.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-body);
    margin-bottom: 3rem;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.btn-glow {
    position: relative;
}

.btn-circle {
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: var(--pumpkin);
    opacity: 0.3;
    z-index: -1;
    animation: btn-glow 3s ease-in-out infinite;
}

.stats-wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-heading);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-body);
    margin-top: 0.5rem;
}

.stat-separator {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

.hero-visual {
    position: relative;
}

.visual-container {
    position: relative;
    width: 500px;
    height: 500px;
    margin: 0 auto;
}

.tech-orbit {
    position: absolute;
    inset: 0;
    animation: orbit-rotate 20s linear infinite;
}

.orbit-line {
    position: absolute;
    inset: 10%;
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.orbit-items {
    position: absolute;
    inset: 0;
    transform-style: preserve-3d;
}

.orbit-item {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    margin: -30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(calc(120deg * var(--i))) translateX(180px) rotate(calc(-120deg * var(--i)));
}

.orbit-item svg {
    width: 30px;
    height: 30px;
    color: var(--orange-peel);
}

.glow-effect {
    position: absolute;
    inset: 20%;
    background: radial-gradient(circle, var(--pumpkin) 0%, transparent 70%);
    opacity: 0.1;
    filter: blur(40px);
}

@keyframes orbit-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes btn-glow {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0; }
}

/* Modern Footer Styles */
.footer {
    position: relative;
    background: linear-gradient(135deg, 
        var(--persian-indigo) 0%,
        var(--russian-violet) 100%);
    padding: 8rem 0 2rem;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--orange-peel),
        transparent
    );
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--pumpkin) 0%, transparent 70%);
    opacity: 0.05;
    filter: blur(60px);
    transform: translate(20%, -50%);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 4rem;
    margin-bottom: 6rem;
    position: relative;
}

.footer-intro {
    max-width: 380px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-logo:hover {
    transform: translateY(-3px);
}

.footer-logo svg {
    width: 40px;
    height: 40px;
    color: var(--orange-peel);
}

.footer-desc {
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-heading);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, var(--pumpkin), var(--orange-peel));
    transform: translateY(-3px);
    border-color: transparent;
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-group {
    padding-top: 1rem;
}

.footer-group h4 {
    color: var(--text-heading);
    font-size: 1.25rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.footer-group h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, var(--pumpkin), var(--orange-peel));
    border-radius: 3px;
    transition: width 0.3s ease;
}

.footer-group:hover h4::after {
    width: 60px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: var(--text-body);
    text-decoration: none;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--orange-peel);
    transform: translateX(5px);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    color: var(--text-body);
}

.contact-icon {
    width: 24px;
    height: 24px;
    padding: 6px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: var(--orange-peel);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.footer-contact li:hover .contact-icon {
    background: linear-gradient(135deg, var(--pumpkin), var(--orange-peel));
    color: white;
    border-color: transparent;
    transform: scale(1.1);
}

.footer-bottom {
    position: relative;
    padding-top: 2rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .footer-intro {
        grid-column: 1 / -1;
        max-width: 600px;
        margin: 0 auto;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-group {
        text-align: center;
    }

    .footer-group h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-contact li {
        justify-content: center;
        text-align: left;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 6rem 0 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-group {
        max-width: 300px;
        margin: 0 auto;
    }
}

/* Modern Contact Section */
.contact {
    position: relative;
    padding: 8rem 0;
    background: linear-gradient(
        160deg, 
        var(--russian-violet) 0%,
        var(--persian-indigo) 100%
    );
    overflow: hidden;
}

.contact-content {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.contact-info-wrapper {
    position: relative;
    padding: 3rem;
}

.contact-heading {
    margin-bottom: 3rem;
}

.contact-heading h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--text-heading), var(--text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-heading p {
    color: var(--text-body);
    font-size: 1.1rem;
    line-height: 1.7;
}

.contact-methods {
    display: grid;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--orange-peel);
}

.contact-icon {
    width: 24px;
    height: 24px;
    padding: 12px;
    background: linear-gradient(135deg, var(--pumpkin), var(--orange-peel));
    border-radius: 12px;
    color: white;
}

.contact-details h4 {
    color: var(--text-heading);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-details p, 
.contact-details a {
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--orange-peel);
}

.contact-form-wrapper {
    position: relative;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-floating {
    position: relative;
    z-index: 1;
}

.form-control {
    position: relative;
    z-index: 2;
    background-color: var(--persian-indigo);
}

select.form-control {
    z-index: 2;
    position: relative;
    color: var(--text-heading);
}

select.form-control option {
    position: relative;
    z-index: 3;
    padding: 1rem;
    background-color: var(--persian-indigo);
    color: var(--text-heading);
}

.form-label {
    z-index: 1;
}

.form-floating select.form-control:focus {
    border-color: var(--orange-peel);
    outline: none;
    box-shadow: 0 0 0 1px var(--orange-peel);
}

.form-floating select.form-control:not(:placeholder-shown) ~ .form-label {
    color: var(--text-muted);
    transform: scale(0.85) translateY(-0.75rem) translateX(0.15rem);
    background-color: transparent;
}

.form-control {
    width: 100%;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-heading);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--orange-peel);
    background: rgba(255, 255, 255, 0.05);
}

.form-control:focus + .form-label,
.form-control:not(:placeholder-shown) + .form-label {
    transform: translateY(-120%) scale(0.8);
    color: var(--orange-peel);
}

.form-label {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.3s ease;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

textarea.form-control + .form-label {
    top: 1.2rem;
    transform: none;
}

.submit-btn {
    grid-column: 1 / -1;
    padding: 1.2rem;
    background: linear-gradient(135deg, var(--pumpkin), var(--orange-peel));
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 109, 0, 0.2);
}

/* Select dropdown styling */
select.form-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
    padding-right: 2.5rem;
    cursor: pointer;
}

select.form-control option {
    background-color: var(--persian-indigo);
    color: var(--text-heading);
    padding: 1rem;
}

select.form-control:focus option:checked {
    background: var(--orange-peel);
}

.form-floating select.form-control:not(:placeholder-shown) {
    padding-top: 1.625rem;
    padding-bottom: 0.625rem;
}

.form-floating select.form-control:not(:placeholder-shown) ~ label {
    opacity: 0.65;
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 576px) {
    .contact {
        padding: 4rem 0;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .contact-heading h2 {
        font-size: 2rem;
    }
}

/* Modern Redesigned About Section */
.about {
    position: relative;
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--persian-indigo), var(--russian-violet));
}

.about-container {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-title-section h2 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    background: linear-gradient(to right, var(--text-heading), var(--orange-peel));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-title-section p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 3rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--orange-peel);
    background: rgba(255, 255, 255, 0.05);
}

.stat-card .number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(to right, var(--pumpkin), var(--orange-peel));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-card .label {
    color: var(--text-body);
    font-size: 1rem;
}

.timeline {
    position: relative;
    margin-top: 6rem;
}

.timeline-header {
    text-align: center;
    margin-bottom: 4rem;
}

.timeline-header h3 {
    font-size: 2rem;
    color: var(--text-heading);
    margin-bottom: 1rem;
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.timeline-item {
    position: relative;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.timeline-item:hover {
    transform: translateY(-5px);
    border-color: var(--orange-peel);
    background: rgba(255, 255, 255, 0.05);
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--pumpkin), var(--orange-peel));
    border-radius: 50%;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--orange-peel);
    margin-bottom: 1rem;
    text-align: center;
}

.timeline-content h4 {
    color: var(--text-heading);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.timeline-content p {
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
}

.values-section {
    margin-top: 6rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.value-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--orange-peel);
    background: rgba(255, 255, 255, 0.05);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    padding: 15px;
    background: linear-gradient(135deg, var(--pumpkin), var(--orange-peel));
    border-radius: 16px;
    color: white;
}

.value-card h4 {
    color: var(--text-heading);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .about-hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-stats {
        max-width: 500px;
        margin: 0 auto;
    }

    .timeline-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .about-title-section h2 {
        font-size: 2.5rem;
    }

    .timeline-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* Modern Services Section */
.features {
    position: relative;
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--persian-indigo), var(--russian-violet));
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M54.627 0l.83.828-1.415 1.415L51.8 0h2.827zM5.373 0l-.83.828L5.96 2.243 8.2 0H5.374zM48.97 0l3.657 3.657-1.414 1.414L46.143 0h2.828zM11.03 0L7.372 3.657 8.787 5.07 13.857 0H11.03zm32.284 0L49.8 6.485 48.384 7.9l-7.9-7.9h2.83zM16.686 0L10.2 6.485 11.616 7.9l7.9-7.9h-2.83zm20.97 0l9.315 9.314-1.414 1.414L34.828 0h2.83zM22.344 0L13.03 9.314l1.414 1.414L25.172 0h-2.83zM32 0l12.142 12.142-1.414 1.414L30 .828 17.272 13.556l-1.414-1.414L28 0h4zM.284 0l28 28-1.414 1.414L0 2.544V0h.284zM0 5.373l25.456 25.455-1.414 1.415L0 8.2V5.374zm0 5.656l22.627 22.627-1.414 1.414L0 13.86v-2.83zm0 5.656l19.8 19.8-1.415 1.413L0 19.514v-2.83zm0 5.657l16.97 16.97-1.414 1.415L0 25.172v-2.83zM0 28l14.142 14.142-1.414 1.414L0 30.828V28zm0 5.657L11.314 44.97 9.9 46.386l-9.9-9.9v-2.828zm0 5.657L8.485 47.8 7.07 49.212 0 42.143v-2.83zm0 5.657l5.657 5.657-1.414 1.415L0 47.8v-2.83zm0 5.657l2.828 2.83-1.414 1.413L0 53.456v-2.83zM54.627 60L30 35.373 5.373 60H8.2L30 38.2 51.8 60h2.827zm-5.656 0L30 41.03 11.03 60h2.828L30 43.858 46.142 60h2.83zm-5.656 0L30 46.686 16.686 60h2.83L30 49.515 40.485 60h2.83zm-5.657 0L30 52.343 22.343 60h2.83L30 55.172 34.828 60h2.83zM32 60l-2-2-2 2h4zM59.716 0l-28 28 1.414 1.414L60 2.544V0h-.284zM60 5.373L34.544 30.828l1.414 1.415L60 8.2V5.374zm0 5.656L37.373 33.656l1.414 1.414L60 13.86v-2.83zm0 5.656l-19.8 19.8 1.415 1.413L60 19.514v-2.83zm0 5.657l-16.97 16.97 1.414 1.415L60 25.172v-2.83zM60 28L45.858 42.142l1.414 1.414L60 30.828V28zm0 5.657L48.686 44.97l1.415 1.415 9.9-9.9v-2.828zm0 5.657L51.515 47.8l1.414 1.413 7.07-7.07v-2.83zm0 5.657l-5.657 5.657 1.414 1.415L60 47.8v-2.83zm0 5.657l-2.828 2.83 1.414 1.413L60 53.456v-2.83zM39.9 16.385l1.414-1.414L30 3.658 18.686 14.97l1.415 1.415 9.9-9.9 9.9 9.9zm-2.83 2.828l1.415-1.414L30 9.313 21.515 17.8l1.414 1.413L30 11.97l7.07 7.242zm-2.827 2.83l1.414-1.416L30 14.97l-5.657 5.657 1.414 1.415L30 17.8l4.243 4.242zm-2.83 2.827l1.415-1.414L30 20.626l-2.828 2.83 1.414 1.414L30 23.456l1.414 1.414zM30 26.284l-1.414 1.414L30 29.112l1.414-1.414L30 26.284z' fill='%239C92AC' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.service-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 3rem 2rem;
    overflow: hidden;
    transition: all 0.4s ease;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(255, 109, 0, 0.05),
        transparent
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--orange-peel);
    background: rgba(255, 255, 255, 0.03);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--pumpkin), var(--orange-peel));
    border-radius: 20px;
    margin-bottom: 2rem;
    color: white;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 10px 20px rgba(255, 109, 0, 0.2);
}

.service-content h3 {
    color: var(--text-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-content p {
    color: var(--text-body);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.service-features {
    list-style: none;
    margin-top: 2rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-body);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.feature-icon {
    width: 20px;
    height: 20px;
    color: var(--orange-peel);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--orange-peel);
    text-decoration: none;
    font-weight: 500;
    margin-top: 2rem;
    transition: all 0.3s ease;
}

.service-link:hover {
    transform: translateX(5px);
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}
