/* Professional Coastal Rush Website - Navy, Black, White */

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

:root {
    --navy: #112761;
    --black: #000000;
    --white: #ffffff;
    --navy-light: #1a2d5f;
    --navy-dark: #0a1a3d;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.01em;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--black);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 600;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--gray-700);
}

/* Header */
header {
    background-color: var(--white);
    border-bottom: 1px solid var(--gray-200);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 1.5rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo h2 {
    color: var(--navy);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin: 0;
}

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

.nav-link {
    color: var(--navy);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
    border-radius: 4px;
    transition: all 0.2s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    background-color: var(--gray-100);
    color: var(--navy);
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 6px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 0.5rem 0;
    list-style: none;
    margin: 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    color: var(--navy);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.dropdown-link:hover,
.dropdown-link.active {
    background-color: var(--gray-50);
    color: var(--navy-dark);
}

.dropdown-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.coming-soon {
    color: var(--gray-500) !important;
    cursor: not-allowed;
    opacity: 0.7;
    background-color: transparent !important;
}

.coming-soon small {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--gray-400);
    margin-top: 2px;
}

.coming-soon:hover {
    background-color: transparent !important;
    color: var(--gray-500) !important;
    transform: none !important;
}

/* Coming Soon Service Cards */
.coming-soon-service {
    position: relative;
    opacity: 0.6;
    pointer-events: none;
}

.coming-soon-service .card-link.disabled {
    color: var(--gray-500);
    cursor: not-allowed;
    text-decoration: none;
}

.coming-soon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    border-radius: 8px;
}

.coming-soon-text {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(17, 39, 97, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(17, 39, 97, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 16px rgba(17, 39, 97, 0.4);
    }
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.bar {
    width: 24px;
    height: 2px;
    background-color: var(--navy);
    margin: 3px 0;
    transition: 0.3s;
}

/* Main Content */
main {
    margin-top: 80px;
}

/* Hero Section */
.hero {
    background-color: var(--white);
    padding: 6rem 0;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--white) 100%);
    z-index: -1;
}

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

.hero-content h1 {
    color: var(--navy);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
    border: 2px solid transparent;
    cursor: pointer;
    min-width: 160px;
}

.btn-primary {
    background-color: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.btn-primary:hover {
    background-color: var(--navy-dark);
    border-color: var(--navy-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(17, 39, 97, 0.3);
}

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

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

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-box {
    background-color: var(--gray-100);
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.hero-icon {
    font-size: 4rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

/* Hero Badge */
.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(17, 39, 97, 0.2);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(17, 39, 97, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 16px rgba(17, 39, 97, 0.3);
    }
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 2px solid var(--gray-200);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 500;
}

/* Hero Image Wrapper with Floating Badges */
.hero-image-wrapper {
    position: relative;
}

.floating-badge {
    position: absolute;
    background-color: var(--white);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 10;
    animation: float 3s ease-in-out infinite;
}

.badge-1 {
    top: 10%;
    right: -10%;
    color: var(--navy);
    animation-delay: 0s;
}

.badge-2 {
    bottom: 20%;
    left: -10%;
    color: var(--navy);
    animation-delay: 1s;
}

.badge-3 {
    top: 50%;
    right: -15%;
    color: var(--navy);
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}



/* Sections */
.section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    color: var(--navy);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* Grid System */
.grid {

/* Service Card Hover Effects */
.service-card-hover {
    position: relative;
    overflow: hidden;
}

.service-card-hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(17, 39, 97, 0.05), transparent);
    transition: left 0.5s ease;
}

.service-card-hover:hover::before {
    left: 100%;
}

.card-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--navy);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.card-link:hover {
    color: var(--navy-dark);
    transform: translateX(5px);
}


    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Cards */
.card {
    background-color: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.card:hover {
    border-color: var(--navy);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.card-icon {
    width: 60px;
    height: 60px;
    background-color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.card-title {
    color: var(--black);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.card-text {
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

/* Feature Section */
.features {
    background-color: var(--gray-100);
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 8px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: var(--navy);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--white);
    margin: 0 auto 1rem;
}

.feature-title {
    color: var(--black);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.feature-text {
    color: var(--gray-600);
    margin: 0;
    font-size: 0.95rem;
}

/* Page Header */
.page-header {
    background-color: var(--navy);
    color: var(--white);
    padding: 8rem 0 6rem;
    text-align: center;
    position: relative;
}

.page-title {
    color: var(--white);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--white);
    opacity: 0.9;
    margin: 0;
}

/* About Page Specific */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-text h3 {
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-visual {
    background-color: var(--gray-100);
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    padding: 4rem;
    text-align: center;
    font-size: 3rem;
    color: var(--navy);
}

/* Services Page Specific */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card {
    background-color: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    border-color: var(--navy);
    box-shadow: 0 8px 24px rgba(17, 39, 97, 0.15);
    transform: translateY(-2px);
}

.service-card-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
}

.service-card-title {
    color: var(--white);
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.service-card-content {
    padding: 2rem;
}

.service-description {
    color: var(--gray-600);
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.6;
}

.service-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.service-column {
    min-width: 0;
}

.service-subtitle {
    color: var(--navy);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--gray-200);
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--gray-700);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--gray-100);
    position: relative;
    padding-left: 1rem;
}

.service-features li:before {
    content: '•';
    color: var(--navy);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.service-features li:last-child {
    border-bottom: none;
}

.pricing-table {
    background-color: var(--gray-50);
    border-radius: 8px;
    padding: 1rem;
    border: 1px solid var(--gray-200);
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.price-row:last-child {
    border-bottom: none;
    font-weight: 600;
    color: var(--navy);
}

.price {
    font-weight: 600;
    color: var(--navy);
}

.service-action {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
}

.service-link {
    color: var(--navy);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--navy);
    border-radius: 6px;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-link:hover {
    background-color: var(--navy);
    color: var(--white);
    transform: translateY(-1px);
}

.service-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.area-item {
    background-color: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 6px;
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    color: var(--navy);
    transition: all 0.2s ease;
}

.area-item:hover {
    border-color: var(--navy);
    background-color: var(--gray-50);
}

.areas-action {
    text-align: center;
    margin-top: 2rem;
}

/* FAQ Accordion Styles */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--navy);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    background-color: var(--white);
}

.faq-question:hover {
    background-color: var(--gray-50);
}

.faq-question h4 {
    margin: 0;
    color: var(--navy);
    font-size: 1.125rem;
    font-weight: 600;
    flex: 1;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--navy);
    transition: transform 0.3s ease;
    margin-left: 1rem;
    min-width: 24px;
    text-align: center;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: var(--gray-50);
}

.faq-item.active .faq-answer {
    padding: 1.5rem 2rem;
    max-height: 200px;
}

.faq-answer p {
    margin: 0;
    color: var(--gray-600);
    line-height: 1.6;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .faq-container {
        margin: 0 1rem;
    }
    
    .faq-question {
        padding: 1.25rem 1.5rem;
    }
    
    .faq-question h4 {
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 1.25rem 1.5rem;
    }
}

/* Contact Page Specific */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    color: var(--navy);
    margin-bottom: 2rem;
}

.contact-method {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background-color: var(--gray-100);
    border-radius: 8px;
    border-left: 4px solid var(--navy);
}

.contact-method h4 {
    color: var(--black);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.contact-method p {
    margin: 0;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Enhanced CTA Section */
.cta-section-enhanced {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.cta-section-enhanced::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.cta-section-enhanced::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

.cta-box-enhanced {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.cta-icon-large {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.cta-title-enhanced {
    color: var(--white);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-subtitle-enhanced {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.cta-feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    transition: all 0.3s ease;
}

.cta-feature-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon-circle {
    width: 70px;
    height: 70px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-feature-card h4 {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.cta-feature-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin: 0;
}

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

.btn-cta-primary {
    background: var(--white);
    color: var(--navy);
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: inline-block;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    background: var(--gray-100);
}

.btn-cta-secondary {
    background: transparent;
    color: var(--white);
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid var(--white);
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-cta-secondary:hover {
    background: var(--white);
    color: var(--navy);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .cta-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }
}



/* Google Reviews Section */
.google-reviews-container {
    max-width: 900px;
    margin: 0 auto;
}

.google-reviews-widget {
    margin-bottom: 2rem;
}

.google-reviews-fallback {
    text-align: center;
}

.google-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem;
    background-color: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    flex-wrap: wrap;
}

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

.google-rating {
    text-align: center;
}

.rating-stars {
    font-size: 1.5rem;
    color: #FBBC05;
    letter-spacing: 2px;
    margin-bottom: 0.25rem;
}

.rating-text {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 500;
}

.btn-small {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    min-width: auto;
}

@media (max-width: 768px) {
    .google-badge {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .btn-small {
        width: 100%;
    }
}


/* App Store Badges */
.apps-section {
    margin-top: 1.5rem;
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.app-category {
    text-align: center;
}

.app-label {
    color: var(--gray-400);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.app-badges {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.app-badge {
    display: inline-block;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.app-badge:hover {
    transform: translateY(-2px);
    opacity: 0.8;
}

.app-badge img {
    display: block;
    height: 40px;
    width: auto;
}

@media (max-width: 768px) {

/* Footer Apps Section */
.footer-apps-row {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-700);
}

.footer-apps-row .app-badges {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}


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


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

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--black);
    font-size: 0.95rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--gray-300);
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
    background-color: var(--white);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(17, 39, 97, 0.1);
}

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

/* Quick Actions */
.quick-actions {
    background-color: var(--gray-100);
}

.quick-action-card {
    background-color: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.quick-action-card:hover {
    border-color: var(--navy);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.quick-action-icon {
    width: 60px;
    height: 60px;
    background-color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    margin: 0 auto 1.5rem;
}

.quick-action-title {
    color: var(--black);
    margin-bottom: 1rem;
}

.quick-action-text {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.quick-action-btn {
    background-color: var(--navy);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    display: inline-block;
}

.quick-action-btn:hover {
    background-color: var(--navy-dark);
    transform: translateY(-2px);
}

/* Footer */
footer {
    background-color: var(--black);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-section p {
    color: var(--gray-400);
    line-height: 1.6;
    margin: 0;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

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

.footer-section ul li a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-section ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--gray-700);
    text-align: center;
    color: var(--gray-500);
}

/* Image Gallery for About Page */
.image-gallery {
    margin: 4rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    aspect-ratio: 1;
    width: 100%;
    max-width: 400px;
    height: auto;
    margin: 0 auto;
}

.gallery-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(17, 39, 97, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    aspect-ratio: 1;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 1.5rem 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.gallery-description {
    font-size: 0.85rem;
    opacity: 0.9;
    margin: 0;
    line-height: 1.4;
}

/* Responsive image gallery sizing */
@media (min-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 1100px;
    }
}

@media (max-width: 1199px) and (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 900px;
    }
}

@media (max-width: 767px) and (min-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
        gap: 1rem;
    }
}

@media (max-width: 479px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        gap: 1rem;
    }
    
    .gallery-overlay {
        padding: 1rem 0.75rem;
    }
    
    .gallery-title {
        font-size: 0.9rem;
    }
    
    .gallery-description {
        font-size: 0.75rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background-color: var(--navy);
        width: 100%;
        padding: 1rem 0;
        gap: 0;
        transition: 0.3s;
        border-top: 1px solid var(--navy-light);
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        overflow-x: hidden;
    }

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

    .nav-menu li {
        margin: 0.5rem 0;
    }

    /* Force visibility of all navigation links in mobile menu */
    .nav-menu a.nav-link {
        color: white !important;
        display: block !important;
        text-align: center !important;
        font-size: 1.1rem !important;
        padding: 0.75rem !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .nav-menu a.nav-link:hover,
    .nav-menu a.nav-link.active {
        background-color: var(--navy-light) !important;
        color: white !important;
    }

    /* Mobile dropdown styles */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background-color: var(--navy-light);
        border: none;
        box-shadow: none;
        padding: 0;
        margin: 0.5rem 0;
    }

    .dropdown-link {
        color: white !important;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .dropdown-link:hover,
    .dropdown-link.active {
        background-color: var(--navy-dark) !important;
        color: white !important;
    }

    .coming-soon {
        color: var(--gray-400) !important;
        text-align: center;
    }

    .coming-soon small {
        color: var(--gray-500);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        padding-top: 1.5rem;
    }

    .stat-item {
        padding: 1rem;
        background-color: var(--gray-100);
        border-radius: 8px;
    }

    .floating-badge {
        display: none;
    }

    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .btn {
        width: 100%;
        max-width: 250px;
    }

    .section {
        padding: 4rem 0;
    }

    .hero {
        padding: 4rem 0;
    }

    .hero-box {
        padding: 3rem 2rem;
    }

    .card {
        padding: 2rem 1.5rem;
    }

    .service-content {
        padding: 2rem;
    }

    .contact-method {
        padding: 1.5rem;
    }

    /* Tablet responsive for new service cards */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .service-card-header {
        padding: 1.75rem 1.75rem;
    }

    .service-card-content {
        padding: 1.75rem;
    }

    .service-details {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }
}

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

    .hero-box {
        padding: 2rem 1rem;
    }

    .card {
        padding: 1.5rem 1rem;
    }

    .service-content {
        padding: 1.5rem;
    }

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

    /* Mobile responsive for new service cards */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card-header {
        padding: 1.5rem 1.5rem;
    }

    .service-card-title {
        font-size: 1.25rem;
    }

    .service-icon {
        font-size: 1.75rem;
        width: 45px;
        height: 45px;
    }

    .service-card-content {
        padding: 1.5rem;
    }

    .service-details {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-areas-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 0.75rem;
    }
}

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
.form-input:focus,
.form-select:focus,
.form-textarea:focus,
.quick-action-btn:focus {
    outline: 2px solid var(--navy);
    outline-offset: 2px;
}

/* Empty - styles moved to Services Page Specific section */

/* Marketplace Launch Modal Styles */
.marketplace-modal {
    max-width: 600px;
    background: var(--white);
    color: var(--black);
    border: none;
    position: relative;
    overflow: hidden;
}

.marketplace-modal::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(17, 39, 97, 0.05) 0%, rgba(17, 39, 97, 0.03) 100%);
    border-radius: 50%;
    animation: float 4s ease-in-out infinite;
    z-index: 0;
}

.marketplace-modal::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, rgba(17, 39, 97, 0.03) 0%, rgba(17, 39, 97, 0.01) 100%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite reverse;
    z-index: 0;
}

.marketplace-modal-header {
    position: relative;
    z-index: 1;
    border-bottom: 2px solid var(--gray-200);
    padding: 3rem 2rem 2rem;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
}

.marketplace-icon {
    font-size: 4rem;
    animation: bounce 2s ease-in-out infinite;
    margin-bottom: 1rem;
}

.marketplace-title {
    color: var(--navy);
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
}

.marketplace-content {
    position: relative;
    z-index: 1;
    padding: 0 2rem 2rem;
    background: var(--white);
}

.marketplace-message h4 {
    color: var(--black);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.marketplace-message p {
    color: var(--gray-700);
    font-size: 1.125rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 2rem;
}

.marketplace-features {
    display: flex;
    justify-content: space-around;
    margin: 2rem 0;
    flex-wrap: wrap;
    gap: 1rem;
}

.marketplace-features .feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--gray-50);
    padding: 1.5rem 1rem;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    min-width: 120px;
    transition: all 0.3s ease;
}

.marketplace-features .feature-item:hover {
    background: var(--navy);
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(17, 39, 97, 0.2);
}

.marketplace-features .feature-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.marketplace-features .feature-item:hover .feature-icon {
    transform: scale(1.1);
}

.marketplace-features .feature-item span:last-child {
    color: var(--black);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.marketplace-features .feature-item:hover span:last-child {
    color: var(--white);
}

.launch-notice {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0 0;
    text-align: center;
}

.launch-notice strong {
    color: var(--white);
    font-size: 1.125rem;
}

.marketplace-footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--gray-200);
    padding: 1.5rem 2rem 2.5rem;
    background: var(--white);
    text-align: center;
}

.marketplace-btn {
    background: var(--navy);
    color: var(--white);
    padding: 1rem 3rem;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(17, 39, 97, 0.3);
    min-width: 150px;
}

.marketplace-btn:hover {
    background: var(--navy-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(17, 39, 97, 0.4);
}

@media (max-width: 768px) {
    .marketplace-modal {
        max-width: 95%;
        margin: 1rem;
    }
    
    .marketplace-modal-header {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .marketplace-content {
        padding: 0 1.5rem 1.5rem;
    }
    
    .marketplace-footer {
        padding: 1rem 1.5rem 2rem;
    }
    
    .marketplace-title {
        font-size: 1.5rem;
    }
    
    .marketplace-message h4 {
        font-size: 1.25rem;
    }
    
    .marketplace-message p {
        font-size: 1rem;
    }
    
    .marketplace-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .marketplace-features .feature-item {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
        text-align: left;
        padding: 1rem;
    }
    
    .marketplace-features .feature-icon {
        margin-bottom: 0;
        font-size: 1.5rem;
    }
    
    .marketplace-btn {
        width: 100%;
        max-width: 250px;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    animation: fadeIn 0.3s ease-out;
}

.modal-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal {
    background-color: var(--white);
    border-radius: 12px;
    padding: 0;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
    position: relative;
}

.modal-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
    border-bottom: 1px solid var(--gray-200);
}

.modal-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
}

.modal-icon.success {
    background-color: #d1fae5;
    color: #065f46;
}

.modal-icon.error {
    background-color: #fee2e2;
    color: #991b1b;
}

.modal-title {
    color: var(--black);
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.modal-message {
    color: var(--gray-600);
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

.modal-content {
    padding: 1.5rem 2rem;
    text-align: center;
}

.modal-details {
    background-color: var(--gray-50);
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    font-size: 0.9rem;
    color: var(--gray-600);
    text-align: left;
}

.modal-footer {
    padding: 1.5rem 2rem 2rem;
    text-align: center;
}

.modal-button {
    background-color: var(--navy);
    color: var(--white);
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 120px;
}

.modal-button:hover {
    background-color: var(--navy-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(17, 39, 97, 0.3);
}

.modal-button.secondary {
    background-color: var(--gray-300);
    color: var(--gray-700);
    margin-left: 1rem;
}

.modal-button.secondary:hover {
    background-color: var(--gray-400);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.2s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.modal-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

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

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Print styles */
@media print {
    header,
    footer,
    .btn,
    .quick-action-btn {
        display: none;
    }
    
    .hero {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .modal {
        width: 95%;
        margin: 1rem;
    }
    
    .modal-header,
    .modal-content,
    .modal-footer {
        padding: 1.5rem;
    }
    
    .modal-button {
        width: 100%;
        margin: 0.5rem 0;
    }
    
    .modal-button.secondary {
        margin-left: 0;
    }
}