/**
 * Consulteasy - Main Stylesheet
 *
 * Table of Contents:
 * 1. CSS Variables
 * 2. Reset & Base
 * 3. Navigation
 * 4. Hamburger Menu (Mobile)
 * 5. Hero Section
 * 6. Sections & Layout
 * 7. Expertise Cards
 * 8. Case Study Section
 * 9. Why Me Section
 * 10. CTA Section
 * 11. Footer
 * 12. Buttons
 * 13. Animations
 * 14. Responsive Breakpoints
 */

/* ==========================================================================
   1. CSS Variables
   ========================================================================== */

:root {
    /* Brand Colors */
    --color-teal: #1BA6B8;
    --color-green: #6FC3A4;
    --color-lime: #A8C97F;
    --color-yellow: #E5C86F;
    --color-orange: #F5A962;

    /* Neutral Colors */
    --color-dark: #1a1a2e;
    --color-gray: #5a5a6e;
    --color-light: #f8f9fb;
    --color-white: #ffffff;

    /* Typography */
    --font-display: 'Outfit', sans-serif;
    --font-body: 'DM Sans', sans-serif;

    /* Gradients */
    --gradient-main: linear-gradient(135deg, var(--color-teal) 0%, var(--color-green) 35%, var(--color-lime) 60%, var(--color-yellow) 85%, var(--color-orange) 100%);
    --gradient-soft: linear-gradient(180deg, rgba(27, 166, 184, 0.08) 0%, rgba(245, 169, 98, 0.08) 100%);
}

/* ==========================================================================
   2. Reset & Base
   ========================================================================== */

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

body {
    font-family: var(--font-body);
    color: var(--color-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--color-white);
}

/* ==========================================================================
   3. Navigation
   ========================================================================== */

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(27, 166, 184, 0.1);
    transition: all 0.3s ease;
}

nav.scrolled {
    padding: 1rem 5%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 50px;
    width: auto;
    border-radius: 8px;
}

.logo-text-container {
    display: flex;
    flex-direction: column;
    margin-left: 0.5rem;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    line-height: 1.2;
}

.logo-tagline {
    font-size: 0.7rem;
    color: var(--color-teal);
    font-weight: 500;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-dark);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a:not(.cta-button)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-main);
    transition: width 0.3s ease;
}

.nav-links a:not(.cta-button):hover::after {
    width: 100%;
}

/* ==========================================================================
   4. Hamburger Menu (Mobile)
   ========================================================================== */

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: var(--gradient-main);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: left;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
}

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

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

/* ==========================================================================
   5. Hero Section
   ========================================================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 8rem 5% 4rem;
    background: var(--gradient-soft);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(27, 166, 184, 0.15) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -20%;
    width: 70%;
    height: 120%;
    background: radial-gradient(circle, rgba(245, 169, 98, 0.12) 0%, transparent 70%);
    animation: float 25s ease-in-out infinite reverse;
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: white;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-teal);
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.hero-text h1 {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--color-dark);
    max-width: 900px;
}

.gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--color-gray);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    max-width: 700px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.trust-bar {
    display: flex;
    gap: 2rem;
    align-items: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--color-gray);
}

.trust-icon {
    width: 24px;
    height: 24px;
    background: var(--gradient-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
}

/* ==========================================================================
   6. Sections & Layout
   ========================================================================== */

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-teal);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-description {
    font-size: 1.15rem;
    color: var(--color-gray);
    line-height: 1.8;
}

/* ==========================================================================
   7. Expertise Cards
   ========================================================================== */

.expertise {
    padding: 6rem 5%;
    background: white;
}

/* Hero expertise - when expertise section is at the top of page */
.expertise.hero-expertise {
    padding-top: 10rem;
    min-height: 100vh;
    background: var(--gradient-soft);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Secondary hero - when hero section is not at the top */
.hero.secondary-hero {
    min-height: auto;
    padding: 6rem 5%;
}

.expertise-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.expertise-card {
    background: var(--gradient-soft);
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(27, 166, 184, 0.1);
}

.expertise-card.primary {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(27, 166, 184, 0.1) 0%, rgba(111, 195, 164, 0.1) 100%);
}

.expertise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--gradient-main);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 0;
}

.expertise-card:hover::before {
    height: 100%;
    opacity: 0.05;
}

.expertise-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.expertise-card > * {
    position: relative;
    z-index: 1;
}

.expertise-badge {
    display: block;
    padding: 0.5rem 1rem;
    background: white;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.expertise-badge.featured {
    background: var(--gradient-main);
    color: white;
}

.expertise-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-main);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    vertical-align: middle;
    margin-right: 1rem;
}

.expertise-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: inline;
    vertical-align: middle;
}

.expertise-card .expertise-icon + .expertise-title {
    margin-bottom: 0;
}

.expertise-card .expertise-title + .expertise-description {
    margin-top: 1.5rem;
}

.expertise-card.primary .expertise-title {
    font-size: 2.5rem;
}

.expertise-description {
    color: var(--color-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.expertise-features {
    list-style: none;
    margin-bottom: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.expertise-card.primary .expertise-features {
    grid-template-columns: 1fr 1fr 1fr;
}

.expertise-features li {
    padding: 0.75rem 0;
    color: var(--color-gray);
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
}

.expertise-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-teal);
    font-weight: 700;
}

.expertise-link {
    color: var(--color-teal);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.expertise-link:hover {
    gap: 1rem;
}

/* ==========================================================================
   8. Case Study Section
   ========================================================================== */

.case-study {
    padding: 8rem 5%;
    background: var(--color-dark);
    color: white;
    position: relative;
    overflow: hidden;
}

.case-study::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(111, 195, 164, 0.1) 0%, transparent 70%);
    animation: float 30s ease-in-out infinite;
}

.case-study-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.case-study-header {
    max-width: 800px;
    margin-bottom: 4rem;
}

.case-study-header h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.case-study-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.case-study-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.case-study-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.case-study-item h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-lime);
}

.case-study-item p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.case-study-item ul {
    list-style: none;
    margin-top: 1rem;
}

.case-study-item li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: rgba(255, 255, 255, 0.7);
}

.case-study-item li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-lime);
    font-weight: 700;
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ==========================================================================
   9. Why Me Section
   ========================================================================== */

.why-me {
    padding: 8rem 5%;
    background: white;
}

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

.why-content h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-dark);
}

.why-content p {
    font-size: 1.1rem;
    color: var(--color-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.why-points {
    list-style: none;
    margin-top: 2rem;
}

.why-points li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--color-dark);
    font-weight: 500;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.why-points li:last-child {
    border-bottom: none;
}

.why-points li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-teal);
    font-weight: 700;
    font-size: 1.2rem;
}

.credentials {
    background: var(--gradient-soft);
    border-radius: 20px;
    padding: 2.5rem;
}

.credential-item {
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.credential-item:last-child {
    margin-bottom: 0;
}

.credential-title {
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.25rem;
}

.credential-detail {
    font-size: 0.9rem;
    color: var(--color-gray);
}

/* ==========================================================================
   10. Rates Section
   ========================================================================== */

.rates {
    padding: 6rem 5%;
    background: white;
}

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

.rate-card {
    background: var(--gradient-soft);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(27, 166, 184, 0.1);
    transition: all 0.3s ease;
}

.rate-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.rate-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.rate-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.rate-price {
    margin-bottom: 1.5rem;
}

.rate-amount {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rate-period {
    font-size: 1.1rem;
    color: var(--color-gray);
}

.rate-description {
    color: var(--color-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.rate-features {
    list-style: none;
    text-align: left;
}

.rate-features li {
    padding: 0.5rem 0;
    color: var(--color-gray);
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
}

.rate-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-teal);
    font-weight: 700;
}

.rates-note {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(27, 166, 184, 0.08) 0%, rgba(111, 195, 164, 0.08) 100%);
    border-radius: 16px;
    border: 1px solid rgba(27, 166, 184, 0.15);
}

.rates-note-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.rates-note-content h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-dark);
}

.rates-note-content p {
    color: var(--color-gray);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .rates-grid {
        grid-template-columns: 1fr;
    }

    .rates-note {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

/* ==========================================================================
   11. CTA Section
   ========================================================================== */

.cta-section {
    padding: 8rem 5%;
    background: var(--gradient-soft);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.25rem;
    color: var(--color-gray);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================================================
   11. Footer
   ========================================================================== */

footer {
    background: var(--color-dark);
    color: white;
    padding: 4rem 5% 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-section h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

/* ==========================================================================
   12. Buttons
   ========================================================================== */

.cta-button {
    padding: 0.75rem 1.75rem;
    background: var(--gradient-main);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(27, 166, 184, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(27, 166, 184, 0.4);
}

.primary-button {
    padding: 1rem 2.5rem;
    background: var(--gradient-main);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(27, 166, 184, 0.3);
    text-decoration: none;
    display: inline-block;
}

.primary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(27, 166, 184, 0.4);
}

.secondary-button {
    padding: 1rem 2.5rem;
    background: white;
    color: var(--color-dark);
    border: 2px solid var(--color-teal);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.secondary-button:hover {
    background: var(--color-teal);
    color: white;
    transform: translateY(-3px);
}

/* ==========================================================================
   13. Animations
   ========================================================================== */

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(3deg); }
    66% { transform: translate(-20px, 20px) rotate(-3deg); }
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

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

.slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease forwards;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   14. Responsive Breakpoints
   ========================================================================== */

@media (max-width: 1024px) {
    .hero-text h1 {
        font-size: 3rem;
    }

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

    .expertise-card.primary {
        grid-column: 1;
    }

    .expertise-card.primary .expertise-features {
        grid-template-columns: 1fr 1fr;
    }

    .case-study-grid {
        grid-template-columns: 1fr;
    }

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

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

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1rem 5%;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    }

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

    .nav-links a {
        font-size: 1.2rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }

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

    .trust-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .expertise-features {
        grid-template-columns: 1fr;
    }

    .expertise-card.primary .expertise-features {
        grid-template-columns: 1fr;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
    }

    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
        text-align: center;
    }

    .cta-content h2 {
        font-size: 2.5rem;
    }

    .case-study-header h2 {
        font-size: 2rem;
    }
}

/* ==========================================================================
   Contact Page Specific Styles
   ========================================================================== */

.contact-hero {
    padding: 10rem 5% 4rem;
    background: var(--gradient-soft);
    text-align: center;
}

.contact-details {
    padding: 4rem 5%;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-card {
    display: block;
    background: var(--gradient-soft);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(27, 166, 184, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
}

.contact-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-dark);
}

.contact-card span {
    color: var(--color-teal);
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-card:hover span {
    color: var(--color-green);
}

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

/* ==========================================================================
   Services Page Specific Styles
   ========================================================================== */

.services-hero {
    padding: 10rem 5% 4rem;
    background: var(--gradient-soft);
    text-align: center;
}

.services-section {
    padding: 6rem 5%;
}

.services-section:nth-child(even) {
    background: var(--gradient-soft);
}

.service-detail {
    max-width: 1000px;
    margin: 0 auto;
}

.service-detail-header {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
}

.service-detail-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-main);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    flex-shrink: 0;
}

.service-detail-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--color-dark);
}

.service-detail-subtitle {
    color: var(--color-teal);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-detail-description {
    font-size: 1.15rem;
    color: var(--color-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-detail-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    list-style: none;
    margin-bottom: 2rem;
}

.service-detail-features li {
    padding: 1rem;
    background: white;
    border-radius: 10px;
    color: var(--color-dark);
    font-weight: 500;
    padding-left: 2.5rem;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-detail-features li::before {
    content: '✓';
    position: absolute;
    left: 1rem;
    color: var(--color-teal);
    font-weight: 700;
}

@media (max-width: 768px) {
    .service-detail-header {
        flex-direction: column;
        text-align: center;
    }

    .service-detail-icon {
        margin: 0 auto;
    }

    .service-detail-title {
        font-size: 2rem;
    }

    .service-detail-features {
        grid-template-columns: 1fr;
    }
}
