:root {
    --color-midnight: #0A1128;
    --color-ocean: #001F54;
    --color-sky: #034078;
    --color-accent: #1282A2;
    --color-frost: #FEFCFB;
    --color-silver: #E8EAED;
    --color-gold: #FFD700;
    --color-coral: #FF6B6B;

    --font-display: 'Playfair Display', serif;
    --font-body: 'Source Sans 3', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--color-midnight);
    background: var(--color-frost);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Animated Background */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, var(--color-frost) 0%, var(--color-silver) 50%, var(--color-frost) 100%);
    opacity: 0.5;
}

.bg-animation::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, transparent 20%, var(--color-ocean) 20%, var(--color-ocean) 80%, transparent 80%, transparent),
        radial-gradient(circle, transparent 20%, var(--color-ocean) 20%, var(--color-ocean) 80%, transparent 80%, transparent) 50px 50px;
    background-size: 100px 100px;
    opacity: 0.05;
    animation: bgMove 60s linear infinite;
}

@keyframes bgMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 17, 40, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.5rem 5%;
    border-bottom: 2px solid var(--color-accent);
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-frost);
    text-decoration: none;
    letter-spacing: 2px;
    position: relative;
    transition: all 0.3s ease;
    z-index: 1001;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--color-gold);
    transition: width 0.3s ease;
}

.logo:hover::after {
    width: 100%;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--color-frost);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

/* Nav Menu Container */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--color-frost);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--color-accent);
}

.nav-links a:hover::before {
    width: 100%;
}

.nav-links a.active {
    color: var(--color-gold);
}

.nav-search {
    display: flex;
    align-items: center;
}

/* Main Content */
main {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--color-midnight) 0%, var(--color-ocean) 100%);
    color: var(--color-frost);
    padding: 4rem 5%;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-section h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-gold);
}

.footer-section p,
.footer-section a {
    color: var(--color-silver);
    text-decoration: none;
    line-height: 1.8;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-silver);
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

.delay-5 {
    animation-delay: 1s;
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 5%;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(18, 130, 162, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--color-midnight);
    background: linear-gradient(135deg, var(--color-midnight), var(--color-ocean), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text .subtitle {
    font-size: 1.5rem;
    color: var(--color-ocean);
    margin-bottom: 3rem;
    font-weight: 300;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-ocean), var(--color-accent));
    color: var(--color-frost);
    box-shadow: 0 10px 30px rgba(18, 130, 162, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(18, 130, 162, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--color-ocean);
    border: 3px solid var(--color-ocean);
}

.btn-secondary:hover {
    background: var(--color-ocean);
    color: var(--color-frost);
    transform: translateY(-3px);
}

.hero-visual {
    position: relative;
    height: 500px;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.card-1 {
    top: 10%;
    left: 0;
    width: 280px;
    animation: float 6s ease-in-out infinite;
}

.card-2 {
    top: 40%;
    right: 0;
    width: 260px;
    animation: float 6s ease-in-out infinite 2s;
}

.card-3 {
    bottom: 10%;
    left: 20%;
    width: 300px;
    animation: float 6s ease-in-out infinite 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.card-1 .card-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.card-2 .card-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.card-3 .card-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
}

.card-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-midnight);
}

.card-text {
    font-size: 0.95rem;
    color: var(--color-ocean);
    line-height: 1.5;
}

/* Features Section */
.features {
    padding: 8rem 5%;
    background: var(--color-frost);
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--color-midnight);
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: var(--color-ocean);
    margin-bottom: 5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.feature-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--color-accent);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--color-ocean), var(--color-accent));
    color: white;
    font-weight: bold;
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-midnight);
}

.feature-description {
    font-size: 1.1rem;
    color: var(--color-ocean);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 8rem 5%;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-ocean) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--color-frost);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.4rem;
    color: var(--color-silver);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.cta-button {
    background: var(--color-gold);
    color: var(--color-midnight);
    font-weight: 700;
    display: inline-block;
    padding: 1.2rem 3rem;
    text-decoration: none;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    font-size: 1.1rem;
}

.cta-button:hover {
    background: white;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.4);
}

/* Page Header */
.page-header {
    padding: 10rem 5% 6rem;
    background: linear-gradient(135deg, var(--color-midnight) 0%, var(--color-ocean) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(18, 130, 162, 0.2) 0%, transparent 50%);
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 900;
    color: var(--color-frost);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 1.5rem;
    color: var(--color-silver);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* About Section */
.about-section {
    padding: 8rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 6rem;
}

.about-content h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: var(--color-midnight);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.about-content p {
    font-size: 1.2rem;
    color: var(--color-ocean);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-image {
    height: 500px;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-ocean));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    color: white;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Values Section */
.values-section {
    background: var(--color-silver);
    padding: 8rem 5%;
}

.values-container {
    max-width: 1400px;
    margin: 0 auto;
}

.values-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 900;
    text-align: center;
    color: var(--color-midnight);
    margin-bottom: 5rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.value-card {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border-top: 5px solid transparent;
}

.value-card:nth-child(1) {
    border-top-color: #667eea;
}

.value-card:nth-child(2) {
    border-top-color: #f5576c;
}

.value-card:nth-child(3) {
    border-top-color: #4facfe;
}

.value-card:nth-child(4) {
    border-top-color: #43e97b;
}

.value-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.value-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    position: relative;
    color: white;
}

.value-card:nth-child(1) .value-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.value-card:nth-child(2) .value-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.value-card:nth-child(3) .value-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.value-card:nth-child(4) .value-icon {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.value-card h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-midnight);
    margin-bottom: 1rem;
}

.value-card p {
    font-size: 1.1rem;
    color: var(--color-ocean);
    line-height: 1.7;
}

/* Team Section */
.team-section {
    padding: 8rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.team-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 900;
    text-align: center;
    color: var(--color-midnight);
    margin-bottom: 2rem;
}

.team-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: var(--color-ocean);
    margin-bottom: 5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.team-member {
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-photo {
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-accent), var(--color-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    color: white;
}

.member-photo::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.member-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-midnight);
    margin-bottom: 0.5rem;
}

.member-role {
    font-size: 1.1rem;
    color: var(--color-accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Services Section */
.services-intro {
    padding: 6rem 5%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.services-intro h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-midnight);
    margin-bottom: 1.5rem;
}

.services-intro p {
    font-size: 1.2rem;
    color: var(--color-ocean);
    line-height: 1.8;
}

.services-grid {
    padding: 4rem 5% 8rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 8rem;
    position: relative;
}

.service-item:nth-child(even) {
    direction: rtl;
}

.service-item:nth-child(even) > * {
    direction: ltr;
}

.service-visual {
    height: 450px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease;
    color: white;
}

.service-visual:hover {
    transform: scale(1.05);
}

.service-item:nth-child(1) .service-visual {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.service-item:nth-child(2) .service-visual {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.service-item:nth-child(3) .service-visual {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.service-item:nth-child(4) .service-visual {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.service-item:nth-child(5) .service-visual {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.service-item:nth-child(6) .service-visual {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

.service-visual::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    animation: rotate 15s linear infinite;
}

.service-content h3 {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--color-midnight);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.service-content p {
    font-size: 1.2rem;
    color: var(--color-ocean);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.service-features li {
    font-size: 1.1rem;
    color: var(--color-ocean);
    padding: 0.8rem 0;
    padding-left: 2.5rem;
    position: relative;
    line-height: 1.6;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: bold;
    font-size: 1.3rem;
}

.service-cta {
    display: inline-block;
    margin-top: 1rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--color-ocean), var(--color-accent));
    color: var(--color-frost);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(18, 130, 162, 0.3);
}

.service-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(18, 130, 162, 0.4);
}

/* Process Section */
.process-section {
    padding: 8rem 5%;
    background: var(--color-silver);
}

.process-container {
    max-width: 1400px;
    margin: 0 auto;
}

.process-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 900;
    text-align: center;
    color: var(--color-midnight);
    margin-bottom: 5rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    position: relative;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-accent), var(--color-ocean));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    box-shadow: 0 10px 30px rgba(18, 130, 162, 0.3);
    position: relative;
    z-index: 2;
}

.step-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-midnight);
    margin-bottom: 1rem;
}

.step-description {
    font-size: 1.1rem;
    color: var(--color-ocean);
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 8rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.contact-info {
    position: sticky;
    top: 120px;
}

.contact-info h2 {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--color-midnight);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.contact-info p {
    font-size: 1.2rem;
    color: var(--color-ocean);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 5px solid transparent;
}

.contact-method:nth-child(1) {
    border-left-color: #667eea;
}

.contact-method:nth-child(2) {
    border-left-color: #f5576c;
}

.contact-method:nth-child(3) {
    border-left-color: #4facfe;
}

.contact-method:nth-child(4) {
    border-left-color: #43e97b;
}

.contact-method:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.contact-icon,
.method-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
    color: white;
}

.contact-method:nth-child(1) .method-icon,
.contact-method:nth-child(1) .contact-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.contact-method:nth-child(2) .method-icon,
.contact-method:nth-child(2) .contact-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.contact-method:nth-child(3) .method-icon,
.contact-method:nth-child(3) .contact-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.contact-method:nth-child(4) .method-icon,
.contact-method:nth-child(4) .contact-icon {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.method-content h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-midnight);
    margin-bottom: 0.5rem;
}

.method-content p {
    font-size: 1.1rem;
    color: var(--color-ocean);
    margin: 0;
    line-height: 1.5;
}

.method-content a {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.method-content a:hover {
    color: var(--color-ocean);
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border-top: 5px solid var(--color-accent);
}

.form-title {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--color-midnight);
    margin-bottom: 2rem;
    text-align: center;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-midnight);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 2px solid var(--color-silver);
    border-radius: 15px;
    font-size: 1.1rem;
    font-family: var(--font-body);
    color: var(--color-midnight);
    transition: all 0.3s ease;
    background: var(--color-frost);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-accent);
    background: white;
    box-shadow: 0 5px 20px rgba(18, 130, 162, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.submit-btn {
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--color-ocean), var(--color-accent));
    color: var(--color-frost);
    border: none;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(18, 130, 162, 0.3);
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(18, 130, 162, 0.4);
}

.submit-btn:hover::before {
    width: 400px;
    height: 400px;
}

.submit-btn:active {
    transform: translateY(-1px);
}

/* Map Section */
.map-section {
    padding: 8rem 5%;
    background: var(--color-silver);
}

.map-container {
    max-width: 1400px;
    margin: 0 auto;
}

.map-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 900;
    text-align: center;
    color: var(--color-midnight);
    margin-bottom: 3rem;
}

.map-placeholder {
    height: 500px;
    background: linear-gradient(135deg, var(--color-ocean) 0%, var(--color-accent) 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    color: white;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

/* Social Section */
.social-section {
    padding: 6rem 5%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.social-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--color-midnight);
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-link {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    color: white;
}

.social-link:nth-child(1) {
    background: linear-gradient(135deg, #0077b5, #00a0dc);
}

.social-link:nth-child(2) {
    background: linear-gradient(135deg, #1da1f2, #0e71c8);
}

.social-link:nth-child(3) {
    background: linear-gradient(135deg, #1877f2, #0c5dbf);
}

.social-link:nth-child(4) {
    background: linear-gradient(135deg, #e1306c, #c13584);
}

.social-link:hover {
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* ===================================
   RESPONSIVE DESIGN - MOBILE FIRST
   =================================== */

/* Tablets and smaller devices (max-width: 1024px) */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0;
    }

    .nav-links {
        gap: 2rem;
    }

    .hero-text h1 {
        font-size: 4rem;
    }

    .hero-visual {
        height: 400px;
    }

    .floating-card {
        padding: 1.5rem;
    }

    .card-1,
    .card-2,
    .card-3 {
        width: 240px;
    }

    .section-title {
        font-size: 3rem;
    }

    .about-image,
    .service-visual {
        height: 400px;
        font-size: 7rem;
    }

    .contact-grid {
        gap: 4rem;
    }
}

/* Mobile devices (max-width: 768px) */
@media (max-width: 768px) {
    /* Navigation */
    nav {
        padding: 1rem 5%;
    }

    .nav-container {
        flex-wrap: nowrap;
    }

    .logo {
        font-size: 1.5rem;
    }

    /* Show mobile menu toggle */
    .mobile-menu-toggle {
        display: flex;
    }

    /* Hide and prepare nav menu for mobile */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(10, 17, 40, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        gap: 2rem;
        transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links a {
        display: block;
        padding: 1rem 0;
        font-size: 1.1rem;
        width: 100%;
    }

    .nav-links a::before {
        display: none;
    }

    .nav-links a:hover,
    .nav-links a.active {
        color: var(--color-gold);
        padding-left: 10px;
    }

    .nav-search {
        width: 100%;
        margin-top: 1rem;
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }

    /* Overlay when menu is open */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }

    /* Hero Section */
    .hero {
        min-height: auto;
        padding: 3rem 5% 5rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-text .subtitle {
        font-size: 1.2rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        text-align: center;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .hero-visual {
        height: 300px;
    }

    .floating-card {
        padding: 1rem;
    }

    .card-1 {
        width: 180px;
        top: 5%;
        left: 5%;
    }

    .card-2 {
        width: 160px;
        top: 35%;
        right: 5%;
    }

    .card-3 {
        width: 200px;
        bottom: 5%;
        left: 5%;
    }

    .card-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .card-title {
        font-size: 1.1rem;
    }

    .card-text {
        font-size: 0.85rem;
    }

    /* Sections */
    .features,
    .about-section,
    .team-section,
    .contact-section,
    .process-section {
        padding: 4rem 5%;
    }

    .section-title,
    .values-title,
    .team-title,
    .process-title,
    .map-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature-card {
        padding: 2rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .feature-title {
        font-size: 1.5rem;
    }

    .feature-description {
        font-size: 1rem;
    }

    /* CTA Section */
    .cta-section {
        padding: 5rem 5%;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1.1rem;
    }

    /* Page Header */
    .page-header {
        padding: 7rem 5% 4rem;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .page-header p {
        font-size: 1.1rem;
    }

    /* About Section */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-bottom: 3rem;
    }

    .about-content h2 {
        font-size: 2rem;
    }

    .about-content p {
        font-size: 1.1rem;
    }

    .about-image {
        height: 300px;
        font-size: 6rem;
    }

    /* Values Section */
    .values-section {
        padding: 5rem 5%;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .value-card {
        padding: 2rem;
    }

    .value-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }

    .value-card h3 {
        font-size: 1.5rem;
    }

    .value-card p {
        font-size: 1rem;
    }

    /* Team Section */
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
    }

    .member-photo {
        width: 150px;
        height: 150px;
        font-size: 4rem;
    }

    .member-name {
        font-size: 1.2rem;
    }

    .member-role {
        font-size: 1rem;
    }

    /* Services Section */
    .services-intro {
        padding: 4rem 5%;
    }

    .services-intro h2 {
        font-size: 2rem;
    }

    .services-intro p {
        font-size: 1.1rem;
    }

    .services-grid {
        padding: 3rem 5% 5rem;
    }

    .service-item {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-bottom: 5rem;
    }

    .service-item:nth-child(even) {
        direction: ltr;
    }

    .service-visual {
        height: 300px;
        font-size: 5rem;
    }

    .service-content h3 {
        font-size: 1.8rem;
    }

    .service-content p {
        font-size: 1.1rem;
    }

    .service-features li {
        font-size: 1rem;
        padding-left: 2rem;
    }

    .service-cta {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }

    /* Process Section */
    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .step-title {
        font-size: 1.3rem;
    }

    .step-description {
        font-size: 1rem;
    }

    /* Contact Section */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info {
        position: static;
    }

    .contact-info h2 {
        font-size: 2rem;
    }

    .contact-info p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .contact-method {
        padding: 1.5rem;
        gap: 1rem;
    }

    .contact-icon,
    .method-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .method-content h3 {
        font-size: 1.1rem;
    }

    .method-content p {
        font-size: 1rem;
    }

    /* Contact Form */
    .contact-form {
        padding: 2rem;
    }

    .form-title {
        font-size: 1.8rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 1rem;
        font-size: 1rem;
    }

    .submit-btn {
        padding: 1.2rem;
        font-size: 1rem;
    }

    /* Map Section */
    .map-section {
        padding: 5rem 5%;
    }

    .map-placeholder {
        height: 300px;
        font-size: 5rem;
    }

    /* Social Section */
    .social-section {
        padding: 4rem 5%;
    }

    .social-title {
        font-size: 2rem;
    }

    .social-link {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    /* Footer */
    footer {
        padding: 3rem 5%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-section h3 {
        font-size: 1.3rem;
    }

    .footer-section p {
        font-size: 0.95rem;
    }

    .footer-bottom {
        margin-top: 2rem;
        padding-top: 1.5rem;
        font-size: 0.9rem;
    }
}

/* Small mobile devices (max-width: 480px) */
@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text .subtitle {
        font-size: 1rem;
    }

    .section-title,
    .values-title,
    .team-title,
    .process-title {
        font-size: 1.8rem;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .about-content h2,
    .contact-info h2 {
        font-size: 1.8rem;
    }

    .service-content h3 {
        font-size: 1.6rem;
    }

    .floating-card {
        display: none;
    }

    .hero-visual {
        height: 200px;
    }

    .card-1,
    .card-2 {
        display: block;
        position: static;
        width: 100%;
        margin-bottom: 1rem;
    }

    .card-3 {
        display: none;
    }

    .nav-links {
        font-size: 0.85rem;
        gap: 0.8rem;
    }

    .social-links {
        gap: 1rem;
    }

    .social-link {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Extra small devices (max-width: 360px) */
@media (max-width: 360px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .logo {
        font-size: 1.3rem;
    }

    .nav-links a {
        font-size: 0.8rem;
    }

    .btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
    }

    .feature-card,
    .value-card {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}

/* Landscape orientation for mobile devices */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 2rem 5%;
    }

    .hero-text h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-text .subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-visual {
        display: none;
    }

    .page-header {
        padding: 5rem 5% 3rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }
}

/* Google Custom Search Responsive */
.gcse-search {
    max-width: 250px;
}

@media (max-width: 768px) {
    .gcse-search {
        max-width: 100%;
        width: 100%;
    }
    
    .nav-search .gcse-search {
        margin-top: 0;
    }
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}