/* AIM MODEL - Pure CSS Version */
/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Crimson+Text:wght@400;600&family=Spectral:wght@300;400;500;600&display=swap');

/* CSS Variables */
:root {
    --dawn-black: hsl(0, 0%, 3.9%);
    --dawn-charcoal: hsl(0, 0%, 9.8%);
    --dawn-dark: hsl(0, 0%, 16.5%);
    --dawn-medium: hsl(0, 0%, 22.7%);
    --dawn-gold: hsl(51, 100%, 50%);
    --dawn-gold-hover: hsl(48, 100%, 40%);
    --dawn-light: hsl(0, 0%, 96.1%);
    --dawn-text: hsl(0, 0%, 80%);
    --font-sans: "Montserrat", system-ui, sans-serif;
    --font-serif: "Crimson Text", "Spectral", serif;
    --radius: 0.75rem;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--dawn-black);
    color: var(--dawn-light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.container-narrow {
    max-width: 896px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hidden {
    display: none !important;
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    inset: 0;
    z-index: 100;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-overlay.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
}

.loader-animation {
    margin-bottom: 2rem;
}

.loader-animation svg {
    color: var(--dawn-gold);
}

.loader-step-1, .loader-step-2, .loader-step-3, .loader-step-4 {
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

.loader-step-1 { animation-delay: 0.3s; }
.loader-step-2 { animation-delay: 0.6s; }
.loader-step-3 { animation-delay: 0.9s; }
.loader-step-4 { animation-delay: 1.2s; }

.loading-text {
    font-family: var(--font-sans);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dawn-light);
    margin-bottom: 1.5rem;
}

.loading-dots {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
}

.loading-dots .dot {
    width: 0.5rem;
    height: 0.5rem;
    background-color: var(--dawn-gold);
    border-radius: 50%;
    animation: bounce 0.6s infinite alternate;
}

.loading-dots .dot:nth-child(2) { animation-delay: 0.15s; }
.loading-dots .dot:nth-child(3) { animation-delay: 0.3s; }

@keyframes bounce {
    to { transform: translateY(-8px); }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes slideInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 40;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(4px);
    transition: transform 0.3s ease;
}

.main-nav.hidden-nav {
    transform: translateY(-100%);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 5rem;
}

.logo-img {
    height: 4rem;
    width: 4rem;
    object-fit: contain;
}

/* Menu Toggle */
.menu-toggle {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 50;
    color: white;
    transition: color 0.3s ease;
}

.menu-toggle:hover {
    color: var(--dawn-gold);
}

.menu-icon, .close-icon {
    transition: opacity 0.3s ease;
}

/* Navigation Overlay */
.nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 40;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    overflow: hidden;
    touch-action: none;
}

.overlay-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    max-height: 100vh;
}

.overlay-content::-webkit-scrollbar {
    width: 4px;
}

.overlay-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.overlay-content::-webkit-scrollbar-thumb {
    background: rgba(255, 215, 0, 0.5);
    border-radius: 4px;
}

.overlay-header {
    text-align: center;
    padding: 3rem 1rem 2rem;
}

.overlay-logo {
    height: 4rem;
    width: 4rem;
    object-fit: contain;
    margin: 0 auto 1rem;
}

.overlay-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
}

.overlay-subtitle {
    color: var(--dawn-gold);
    letter-spacing: 0.1em;
    font-size: 1rem;
}

.overlay-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 2rem 1rem 4rem;
}

.nav-links-desktop {
    display: none;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.nav-link {
    color: white;
    font-size: 1.125rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--dawn-gold);
}

.nav-links-mobile {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 20rem;
}

.nav-link-mobile {
    display: block;
    color: white;
    font-size: 1.125rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    padding: 1rem 1.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.nav-link-mobile:hover {
    color: var(--dawn-gold);
    border-color: var(--dawn-gold);
}

@media (min-width: 768px) {
    .nav-links-desktop {
        display: flex;
    }
    .nav-links-mobile {
        display: none;
    }
}

/* Overlay Contact */
.overlay-contact {
    margin-top: auto;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1rem;
}

.contact-grid {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .contact-grid {
        display: grid;
    }
    .contact-toggle, .mobile-contact {
        display: none !important;
    }
}

.contact-column {
    text-align: center;
}

.contact-column .contact-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.contact-column .contact-header h3 {
    color: var(--dawn-gold);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.contact-column .contact-header svg {
    color: var(--dawn-gold);
}

.contact-column p {
    color: white;
    font-size: 0.75rem;
    line-height: 1.5;
    font-weight: 300;
}

.contact-column a {
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
}

.contact-column a:hover {
    color: var(--dawn-gold);
}

.mt-4 {
    margin-top: 1rem;
}

.social-links-overlay {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.social-link-overlay {
    width: 2rem;
    height: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-link-overlay:hover {
    border-color: var(--dawn-gold);
    color: var(--dawn-gold);
    background: rgba(255, 215, 0, 0.1);
}

/* Mobile Contact Toggle */
.contact-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--dawn-gold);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    transition: background 0.3s ease;
}

.contact-toggle:hover {
    background: rgba(255, 255, 255, 0.05);
}

.chevron {
    transition: transform 0.3s ease;
}

.chevron.rotated {
    transform: rotate(180deg);
}

.mobile-contact {
    padding: 1.5rem 1rem;
    animation: slideInUp 0.3s ease;
}

.mobile-contact-item {
    text-align: center;
    padding: 1rem;
}

.mobile-contact-item .contact-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.mobile-contact-item .contact-header h3 {
    color: var(--dawn-gold);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.mobile-contact-item .contact-header svg {
    color: var(--dawn-gold);
}

.mobile-contact-item p {
    color: white;
    font-size: 0.875rem;
    line-height: 1.5;
    font-weight: 300;
    max-width: 300px;
    margin: 0 auto;
}

.mobile-contact-item a {
    color: white;
    font-size: 1rem;
    font-weight: 500;
}

.mobile-contact-item a:hover {
    color: var(--dawn-gold);
}

.social-links-mobile {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link-mobile {
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-link-mobile:hover {
    border-color: var(--dawn-gold);
    color: var(--dawn-gold);
    background: rgba(255, 215, 0, 0.1);
}

@media (min-width: 768px) {
    .contact-toggle {
        display: none;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: black;
}

.video-carousel {
    position: absolute;
    inset: 0;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    pointer-events: none;
}

.hero-video.active {
    opacity: 1;
}

.video-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 20;
}

.video-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-dot:hover {
    background: rgba(255, 255, 255, 0.75);
}

.video-dot.active {
    background: var(--dawn-gold);
    transform: scale(1.25);
}

.scroll-indicator {
    position: absolute;
    bottom: 4rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 30;
    color: var(--dawn-gold);
    animation: bounce 1s infinite;
    cursor: pointer;
    transition: color 0.3s ease;
}

.scroll-indicator:hover {
    color: white;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dawn-light);
    margin-bottom: 1.5rem;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--dawn-text);
    max-width: 48rem;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .section-header h2 {
        font-size: 3rem;
    }
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: var(--dawn-charcoal);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.founder-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    padding: 2rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.founder-card h3 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--dawn-light);
    margin-bottom: 1rem;
}

.founder-role {
    font-size: 1.25rem;
    color: var(--dawn-text);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.founder-company {
    font-size: 1.25rem;
    color: var(--dawn-gold);
    font-weight: 700;
    margin-bottom: 2rem;
}

.founder-bio {
    color: var(--dawn-text);
    font-size: 1.125rem;
    line-height: 1.75;
}

.about-image {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.founder-image-wrapper {
    position: relative;
    min-height: 400px;
    overflow: hidden;
    border-radius: 0.75rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

@media (min-width: 1024px) {
    .founder-image-wrapper {
        min-height: 500px;
    }
}

.founder-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-glow-1 {
    position: absolute;
    top: -1rem;
    right: -1rem;
    width: 6rem;
    height: 6rem;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    filter: blur(24px);
}

.image-glow-2 {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    width: 8rem;
    height: 8rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(24px);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .mission-vision-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.mission-card, .vision-card {
    text-align: center;
    padding: 2rem;
    border-radius: 0.75rem;
    transition: transform 0.3s ease;
}

.mission-card:hover, .vision-card:hover {
    transform: scale(1.05);
}

.mission-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.vision-card {
    background: rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.mission-card h4, .vision-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dawn-gold);
    margin-bottom: 1rem;
}

.mission-card p, .vision-card p {
    color: var(--dawn-text);
    font-size: 1rem;
}

.key-points {
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.key-point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.point-dot {
    width: 0.75rem;
    height: 0.75rem;
    background: var(--dawn-gold);
    border-radius: 50%;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.key-point p {
    color: var(--dawn-text);
    font-size: 1.125rem;
}

.key-point span {
    font-weight: 700;
    color: var(--dawn-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 4rem;
    text-align: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stat-card {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: scale(1.05);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dawn-gold);
    margin-bottom: 0.75rem;
}

.stat-card p {
    color: var(--dawn-light);
    font-weight: 600;
}

/* Portfolio Section */
.portfolio-section {
    padding: 5rem 0;
    background: var(--dawn-charcoal);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1280px) {
    .portfolio-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.portfolio-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    border-radius: 0.5rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.portfolio-item:hover {
    transform: scale(1.05);
    border-color: rgba(255, 215, 0, 0.3);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    height: 16rem;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    background: rgba(0, 0, 0, 0.1);
}

.portfolio-hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 215, 0, 0.9);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-hover-overlay {
    opacity: 1;
}

.portfolio-hover-overlay span {
    color: var(--dawn-black);
    font-weight: 600;
    font-size: 1.125rem;
}

.portfolio-content {
    padding: 1rem;
}

.portfolio-content h3 {
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--dawn-light);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.portfolio-item:hover .portfolio-content h3 {
    color: var(--dawn-gold);
}

.portfolio-content p {
    color: var(--dawn-text);
    font-size: 0.875rem;
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background: var(--dawn-black);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: scale(1.05);
}

.service-image {
    position: relative;
    height: 12rem;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease;
}

.service-card:hover .service-image::after {
    background: rgba(0, 0, 0, 0.1);
}

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dawn-light);
    margin-bottom: 0.75rem;
}

.service-content p {
    color: var(--dawn-text);
    font-size: 0.875rem;
    line-height: 1.75;
}

/* Innovation Section */
.innovation-section {
    padding: 5rem 0;
    background: var(--dawn-charcoal);
}

.innovation-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .innovation-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.innovation-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.innovation-image-large img {
    width: 100%;
    height: 20rem;
    object-fit: cover;
    border-radius: 0.5rem;
}

.innovation-text {
    background: var(--dawn-dark);
    padding: 2rem;
    border-radius: 0.5rem;
}

.innovation-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dawn-light);
    margin-bottom: 1rem;
}

.innovation-text p {
    color: var(--dawn-text);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.innovation-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.innovation-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--dawn-text);
}

.innovation-features li svg {
    color: var(--dawn-gold);
}

.innovation-images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.innovation-image-small {
    overflow: hidden;
    border-radius: 0.5rem;
    transition: transform 0.3s ease;
}

.innovation-image-small:hover {
    transform: scale(1.05);
}

.innovation-image-small img {
    width: 100%;
    height: 15rem;
    object-fit: cover;
}

/* Clients Section */
.clients-section {
    padding: 4rem 0;
    background: var(--dawn-charcoal);
}

.clients-carousel {
    position: relative;
    background: white;
    border-radius: 0.5rem;
    padding: 2rem;
    min-height: 200px;
}

.clients-slider {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    min-height: 80px;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo img {
    height: 5rem;
    width: auto;
    max-width: 250px;
    object-fit: contain;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.carousel-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: #ccc;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.carousel-dot:hover {
    background: #999;
}

.carousel-dot.active {
    background: var(--dawn-gold);
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: var(--dawn-black);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dawn-light);
    margin-bottom: 1.5rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.125rem;
    color: var(--dawn-gold);
}

.contact-item h4 {
    font-weight: 600;
    color: var(--dawn-light);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--dawn-text);
    line-height: 1.75;
}

.contact-item a {
    color: var(--dawn-text);
}

.contact-item a:hover {
    color: var(--dawn-gold);
}

.social-section {
    margin-top: 2rem;
}

.social-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dawn-light);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 3rem;
    height: 3rem;
    background: var(--dawn-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dawn-text);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--dawn-gold);
    color: var(--dawn-black);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--dawn-charcoal);
    padding: 2rem;
    border-radius: 0.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

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

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--dawn-light);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--dawn-dark);
    border: 1px solid var(--dawn-medium);
    border-radius: 0.375rem;
    padding: 0.75rem 1rem;
    color: var(--dawn-light);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--dawn-gold);
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--dawn-text);
}

.form-group select option {
    background: var(--dawn-dark);
    color: var(--dawn-light);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    background: var(--dawn-gold);
    color: var(--dawn-black);
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1.125rem;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: var(--dawn-gold-hover);
    transform: scale(1.05);
}

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

.btn-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-loader .loader-dot {
    width: 0.375rem;
    height: 0.375rem;
    background: var(--dawn-black);
    border-radius: 50%;
    animation: bounce 0.6s infinite alternate;
}

.btn-loader .loader-dot:nth-child(2) { animation-delay: 0.15s; }
.btn-loader .loader-dot:nth-child(3) { animation-delay: 0.3s; }

/* Footer */
.footer {
    background: var(--dawn-charcoal);
    border-top: 1px solid var(--dawn-dark);
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dawn-gold);
    margin-bottom: 1rem;
}

.logo-aim {
    color: var(--dawn-light);
}

.footer-info p {
    color: var(--dawn-text);
    margin-bottom: 1.5rem;
    max-width: 400px;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    color: var(--dawn-text);
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--dawn-gold);
}

.footer-services h3,
.footer-links h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dawn-light);
    margin-bottom: 1rem;
}

.footer-services ul,
.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-services a,
.footer-links a {
    color: var(--dawn-text);
}

.footer-services a:hover,
.footer-links a:hover {
    color: var(--dawn-gold);
}

.footer-bottom {
    border-top: 1px solid var(--dawn-dark);
    padding-top: 2rem;
    margin-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--dawn-text);
}

/* Toast */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--dawn-charcoal);
    border: 1px solid var(--dawn-dark);
    border-radius: 0.5rem;
    padding: 1rem 1.5rem;
    z-index: 100;
    animation: slideInUp 0.3s ease;
    max-width: 400px;
}

.toast.error {
    border-color: #ef4444;
}

.toast-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.toast-title {
    font-weight: 600;
    color: var(--dawn-light);
}

.toast-message {
    color: var(--dawn-text);
    font-size: 0.875rem;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .founder-card h3 {
        font-size: 1.5rem;
    }
    
    .founder-card {
        padding: 1.5rem;
    }
    
    .stats-grid {
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}
