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

:root {
    --primary-blue: #012955;
    --deep-blue: #011d3d;
    --coral: #f8456e;
    --coral-light: #fa6b8a;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    overflow-y: hidden;
}

body.loaded {
    overflow-y: auto;
}

/* Elevator Loader */
.elevator-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--primary-blue) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    overflow: hidden;
}

.elevator-loader::before,
.elevator-loader::after {
    content: '';
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--primary-blue) 100%);
    transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 10001;
}

.elevator-loader::before {
    left: 0;
    border-right: 2px solid rgba(255, 255, 255, 0.1);
}

.elevator-loader::after {
    right: 0;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
}

.elevator-loader.open::before {
    transform: translateX(-100%);
}

.elevator-loader.open::after {
    transform: translateX(100%);
}

.elevator-loader.open {
    background: transparent;
}

.elevator-loader.hide {
    visibility: hidden;
    pointer-events: none;
}

.elevator-shaft {
    width: 120px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.3);
    z-index: 10002;
    transition: opacity 0.3s ease;
}

.elevator-loader.open .elevator-shaft {
    opacity: 0;
}

.elevator-cable {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom,
        rgba(255, 107, 107, 0.3) 0%,
        rgba(255, 107, 107, 0.6) 50%,
        rgba(255, 107, 107, 0.3) 100%
    );
}

.elevator-car {
    position: absolute;
    bottom: 20px;
    left: 10px;
    right: 10px;
    height: 80px;
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-light) 100%);
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(248, 69, 110, 0.4);
    animation: elevator-move 2.8s ease-in-out forwards;
}

.elevator-doors {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
}

.door {
    display: none;
}

.door::before {
    display: none;
}

.elevator-display {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floor-number {
    color: var(--coral);
    font-weight: 700;
    font-size: 14px;
    animation: floor-count 3s ease-in-out infinite;
}

.loading-text {
    margin-top: 40px;
    color: var(--white);
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 1px;
    opacity: 1;
    z-index: 10002;
    position: relative;
    transition: opacity 0.3s ease;
}

.elevator-loader.open .loading-text {
    opacity: 0;
}

.elevator-brand {
    margin-top: 15px;
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    opacity: 1;
    z-index: 10002;
    position: relative;
    transition: opacity 0.3s ease;
}

.elevator-loader.open .elevator-brand {
    opacity: 0;
}

.loader-credit {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 400;
    z-index: 10002;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.elevator-loader.open .loader-credit {
    opacity: 0;
}

.loader-credit a {
    color: var(--coral);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.loader-credit a:hover {
    color: var(--coral-light);
    text-decoration: underline;
}

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

@keyframes elevator-move {
    0% { bottom: 20px; }
    70% { bottom: 200px; }
    100% { bottom: 200px; }
}

@keyframes floor-count {
    0%, 100% { content: '0'; }
    25% { content: '1'; }
    50% { content: '2'; }
    75% { content: '3'; }
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 1.5rem 0;
}

.navbar.scrolled {
    background: rgba(1, 41, 85, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.navbar .container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
}

.nav-brand {
    display: flex;
    justify-content: center;
    grid-column: 2;
}

.logo {
    height: 45px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar.scrolled .logo {
    height: 38px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    grid-column: 1;
    justify-content: flex-start;
}

.nav-cta {
    grid-column: 3;
    display: flex;
    justify-content: flex-end;
}

.nav-link {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    font-size: 15px;
}

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

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

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

.nav-link.active {
    color: var(--coral);
}

.btn-nav {
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-light) 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(248, 69, 110, 0.3);
    border: none;
    cursor: pointer;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(248, 69, 110, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--primary-blue) 60%, #2c5282 100%);
    z-index: -1;
}

.hero-background::before,
.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    z-index: 0;
}

.hero-background::before {
    background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=2070');
    animation: slideshow1 9s ease-in-out infinite;
}

.hero-background::after {
    background-image: url('https://images.unsplash.com/photo-1582407947304-fd86f028f716?q=80&w=2096');
    animation: slideshow2 9s ease-in-out infinite;
}

@keyframes slideshow1 {
    0% { opacity: 0.3; }
    30% { opacity: 0.3; }
    33% { opacity: 0; }
    97% { opacity: 0; }
    100% { opacity: 0.3; }
}

@keyframes slideshow2 {
    0% { opacity: 0; }
    30% { opacity: 0; }
    33% { opacity: 0.3; }
    63% { opacity: 0.3; }
    66% { opacity: 0; }
    100% { opacity: 0; }
}

.hero-bg-3 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?q=80&w=2070');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    z-index: 0;
    animation: slideshow3 9s ease-in-out infinite;
}

@keyframes slideshow3 {
    0% { opacity: 0; }
    63% { opacity: 0; }
    66% { opacity: 0.3; }
    96% { opacity: 0.3; }
    100% { opacity: 0; }
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(248, 69, 110, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, rgba(1, 41, 85, 0.65) 0%, rgba(1, 29, 61, 0.75) 100%);
    z-index: 1;
}

.hero-content {
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.highlight {
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 300;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-light) 100%);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.stat {
    text-align: center;
}

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

.stat p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-indicator span {
    width: 4px;
    height: 10px;
    background: var(--coral);
    border-radius: 2px;
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
    0%, 100% { transform: translateY(0); opacity: 0; }
    50% { transform: translateY(15px); opacity: 1; }
}

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

/* Services Section */
.services {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-gray) 100%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--coral) 50%, transparent 100%);
    opacity: 0.3;
}

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

.section-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-light) 100%);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-top: 1.5rem;
}

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

.service-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    border: 1px solid rgba(248, 69, 110, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-light) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 50px rgba(248, 69, 110, 0.2);
    border-color: var(--coral);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-light) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.service-icon::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-light) 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(-5deg);
}

.service-card:hover .service-icon::after {
    opacity: 0.2;
    animation: pulse-icon 1.5s infinite;
}

@keyframes pulse-icon {
    0%, 100% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(1.1); opacity: 0; }
}

.service-icon svg {
    width: 40px;
    height: 40px;
}

.service-card h3 {
    font-size: 1.6rem;
    color: var(--primary-blue);
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

/* About Section */
.about {
    padding: 120px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(248, 69, 110, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 5rem;
    align-items: center;
}

.about-content {
    position: relative;
    z-index: 1;
}

.about-text {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 1.8rem;
    line-height: 1.9;
}

.about-text strong {
    color: var(--primary-blue);
    font-weight: 700;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--light-gray) 0%, rgba(248, 69, 110, 0.05) 100%);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-light) 100%);
    transition: left 0.4s ease;
    z-index: 0;
}

.feature:hover::before {
    left: 0;
}

.feature:hover {
    border-color: var(--coral);
    transform: translateY(-5px);
}

.feature svg {
    width: 28px;
    height: 28px;
    color: var(--coral);
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.feature:hover svg {
    color: var(--white);
    transform: scale(1.1);
}

.feature span {
    font-weight: 600;
    color: var(--text-dark);
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.feature:hover span {
    color: var(--white);
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 100px;
}

.founder-image {
    width: 100%;
    max-width: 450px;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: visible;
    position: relative;
    background: var(--primary-blue);
    border: 5px solid var(--white);
    box-shadow: 0 25px 70px rgba(1, 41, 85, 0.25);
}

.founder-image::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-light) 100%);
    z-index: -1;
    opacity: 0.6;
}

.founder-image::after {
    content: '';
    position: absolute;
    inset: 20px;
    border: 3px solid rgba(248, 69, 110, 0.5);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.founder-image-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
    transition: transform 0.4s ease;
    filter: brightness(1.05) contrast(1.05);
}

.founder-image:hover img {
    transform: scale(1.08);
}

.founder-overlay {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--deep-blue) 100%);
    padding: 1.5rem 2.5rem;
    z-index: 10;
    border-radius: 16px;
    min-width: 280px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(1, 41, 85, 0.4);
    border: 2px solid rgba(248, 69, 110, 0.3);
}

.founder-overlay h4 {
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--coral-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.founder-overlay p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--light-gray) 0%, var(--white) 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--coral) 50%, transparent 100%);
    opacity: 0.3;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 4rem;
    margin-top: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-light) 100%);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.info-card:hover::before {
    transform: scaleY(1);
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(248, 69, 110, 0.15);
    border-color: rgba(248, 69, 110, 0.2);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-light) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
    transition: all 0.4s ease;
    position: relative;
}

.info-icon::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-light) 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.info-card:hover .info-icon {
    transform: scale(1.05) rotate(-5deg);
}

.info-card:hover .info-icon::after {
    opacity: 0.2;
}

.info-icon svg {
    width: 28px;
    height: 28px;
}

.info-card h4 {
    font-size: 1.2rem;
    color: var(--primary-blue);
    margin-bottom: 0.7rem;
    font-weight: 700;
}

.info-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.info-card a {
    color: var(--coral);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.info-card a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--coral);
    transition: width 0.3s ease;
}

.info-card a:hover::after {
    width: 100%;
}

.info-card a:hover {
    color: var(--primary-blue);
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(1, 41, 85, 0.1);
    border: 2px solid rgba(248, 69, 110, 0.1);
    position: relative;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--coral) 0%, var(--coral-light) 100%);
    border-radius: 20px 20px 0 0;
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--light-gray);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--coral);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(248, 69, 110, 0.1);
}

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

.contact-form .btn {
    width: 100%;
    cursor: pointer;
    border: none;
    font-size: 1.1rem;
    padding: 1.2rem 2rem;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--primary-blue) 100%);
    color: var(--white);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--coral) 50%, transparent 100%);
    opacity: 0.5;
}

.footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(248, 69, 110, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-brand {
    grid-column: 1;
}

.footer-logo {
    height: 55px;
    width: auto;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 2px 8px rgba(248, 69, 110, 0.3));
}

.footer-tagline {
    font-style: italic;
    opacity: 0.9;
    font-size: 1.1rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--coral-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-links {
    display: contents;
}

.footer-column h4 {
    margin-bottom: 1.5rem;
    color: var(--coral);
    font-size: 1.1rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--coral);
}

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

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-column a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: var(--coral);
    transform: translateX(5px);
}

.footer-column a:hover::before {
    opacity: 1;
    left: -15px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.built-by {
    font-size: 0.9rem;
    margin-top: 0.8rem;
    opacity: 0.85;
}

.built-by a {
    color: var(--coral);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.built-by a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--coral-light);
    transition: width 0.3s ease;
}

.built-by a:hover {
    color: var(--coral-light);
}

.built-by a:hover::after {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 968px) {
    .navbar .container {
        grid-template-columns: auto 1fr auto;
    }

    .hamburger {
        display: flex;
        grid-column: 1;
        z-index: 1001;
    }

    .nav-brand {
        grid-column: 2;
        justify-content: center;
    }

    .nav-cta {
        grid-column: 3;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 300px;
        height: 100vh;
        background: var(--deep-blue);
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        box-shadow: var(--shadow-lg);
        transition: right 0.3s ease;
        align-items: flex-start;
        grid-column: unset;
        gap: 1.5rem;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        font-size: 18px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-brand {
        grid-column: 1;
        text-align: center;
        max-width: 100%;
    }

    .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-links {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer-column h4::after {
        left: 0;
    }
}

@media (max-width: 480px) {
    .navbar .container {
        padding: 1rem 15px;
    }

    .logo {
        height: 40px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .service-card,
    .contact-form {
        padding: 1.5rem;
    }

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

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

    .footer-column h4 {
        text-align: center;
    }

    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-column a {
        justify-content: center;
    }

    .btn-nav {
        font-size: 14px;
        padding: 0.6rem 1.5rem;
    }
}
