/* Color Palette from Logo */
:root {
    /* Blue gradient */
    --blue-light: #9EE7FE;
    --blue-dark: #037CF7;
    --blue-darkest: #021A45;
    
    /* Green gradient */
    --green-light: #7BBF17;
    --green-dark: #09993A;
    --green-darkest: #08402C;
    
    /* Yellow gradient */
    --yellow-light: #FDEC05;
    --yellow-dark: #FFB104;
    --yellow-darkest: #724112;
    
    /* Red gradient */
    --red-light: #FE3600;
    --red-dark: #AD0000;
    --red-darkest: #420007;
    
    /* Legacy colors for compatibility */
    --ocean-blue: #037CF7;
    --deep-blue: #021A45;
    --light-blue: #9EE7FE;
    --sky-blue: #9EE7FE;
    --tropical-green: #09993A;
    --palm-green: #7BBF17;
    --sun-yellow: #FFB104;
    --surf-yellow: #FDEC05;
    --sun-orange: #FFB104;
    --hibiscus-red: #FE3600;
    --board-red: #AD0000;
    
    /* Base colors */
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --text-dark: #1A1A1A;
    --text-medium: #4A4A4A;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--ocean-blue) 100%);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    padding: 0.5rem 0;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--sun-yellow);
}

/* Logo Section */
.logo-section {
    background: var(--white);
    padding: 2rem 0;
    text-align: center;
}

/* Logo and Page Header Combined Section (Other Pages) */
.logo-page-header-section {
    padding: 1rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(-45deg, #42A7FA, #003F74);
    background-size: 400% 400%;
    animation: gradientWave 8s ease infinite;
    will-change: background-position;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.logo-page-header-content {
    display: grid;
    grid-template-columns: 33% 67%;
    gap: 2rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.logo-page-header-side {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    padding: 1rem;
}

.logo-page-header-side .main-logo {
    width: 100%;
}

.logo-page-header-side .main-logo img {
    width: 100%;
    height: auto;
    max-width: 100%;
}

.page-header-side {
    padding: 1rem;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white) !important;
}

.page-header-side h1 {
    color: var(--white) !important;
    font-weight: 800;
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header-side .hero-subtitle {
    color: var(--white) !important;
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.main-logo {
    display: inline-block;
}

.main-logo img {
    height: 100px;
    width: auto;
    max-width: 100%;
}

/* Logo and Hero Combined Section (Homepage) */
.logo-hero-section {
    padding: 1rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(-45deg, #42A7FA, #003F74);
    background-size: 400% 400%;
    animation: gradientWave 8s ease infinite;
    will-change: background-position;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

@keyframes gradientWave {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@-webkit-keyframes gradientWave {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.logo-hero-content {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 0;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.logo-side {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    padding: 1rem;
}

.logo-side .main-logo {
    width: 100%;
}

.logo-side .main-logo img {
    width: 100%;
    height: auto;
    max-width: 100%;
}

.hero-side {
    padding: 1rem;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white) !important;
}

.hero-side h1 {
    color: var(--white) !important;
    font-weight: 800;
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-side .hero-subtitle {
    color: var(--white) !important;
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-side .hero-description {
    color: var(--white) !important;
    font-weight: 500;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-side p {
    color: var(--white) !important;
}

.hero-side h1 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    color: var(--white);
}

.hero-side .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 300;
    color: var(--white);
}

.hero-side .hero-description {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: var(--white);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--sky-blue) 0%, var(--light-blue) 50%, var(--ocean-blue) 100%);
    padding: 4rem 2rem;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,60 Q300,20 600,60 T1200,60 L1200,120 L0,120 Z" fill="%23F8F9FA"/></svg>') no-repeat bottom;
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

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

.btn-primary {
    background: var(--hibiscus-red);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 68, 68, 0.3);
}

.btn-primary:hover {
    background: var(--board-red);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 68, 68, 0.4);
}

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--ocean-blue);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

/* Sections */
section {
    padding: 4rem 0;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--deep-blue);
    text-align: center;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 3rem;
}

/* Override section subtitle color for gradient sections */
.why-choose-us .section-subtitle,
.services-overview .section-subtitle,
.gallery .section-subtitle,
.areas-served .section-subtitle,
.referral-program .section-subtitle {
    color: var(--white);
}

/* Why Choose Us */
.why-choose-us {
    background: linear-gradient(135deg, var(--green-light) 0%, var(--green-dark) 100%);
    color: var(--white);
}

.why-choose-us h2 {
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

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

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-icon img {
    height: 100px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.feature-card h3 {
    color: var(--ocean-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-card p {
    color: var(--text-medium);
    line-height: 1.8;
}

/* Services Overview */
.services-overview {
    background: linear-gradient(135deg, var(--blue-light) 0%, var(--blue-dark) 100%);
    color: var(--white);
}

.services-overview h2 {
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.services-overview .section-subtitle {
    color: var(--white);
}

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

.services-overview .text-center {
    margin-top: 3rem;
}

.service-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--off-white) 100%);
    padding: 2.5rem;
    border-radius: 15px;
    border: 3px solid var(--light-blue);
    text-align: center;
    transition: all 0.3s;
}

.service-card:hover {
    border-color: var(--ocean-blue);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.2);
}

.service-card h3 {
    color: var(--deep-blue);
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.service-card p {
    color: var(--text-medium);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--hibiscus-red);
    margin-top: 1rem;
}

/* Gallery */
.gallery {
    background: linear-gradient(135deg, var(--yellow-light) 0%, var(--yellow-dark) 100%);
    color: var(--white);
}

.gallery h2 {
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.gallery .section-subtitle {
    color: var(--white);
}

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

.gallery-item {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 100%;
}

.before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    width: 100%;
}

.ba-image {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.ba-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s;
    max-width: 100%;
}

.ba-image:hover img {
    transform: scale(1.05);
}

.ba-label {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: 600;
}

.action-shots {
    margin-top: 3rem;
    text-align: center;
}

.action-shots h3 {
    color: var(--white);
    margin-bottom: 2rem;
    font-size: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

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

.action-item {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.action-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.action-item img {
    width: 100%;
    height: auto;
    display: block;
}

.photo-caption {
    padding: 1rem;
    color: #1A8CD6;
    font-style: italic;
    margin: 0;
    font-weight: 600;
}

/* Areas Served */
.areas-served {
    background: linear-gradient(135deg, var(--green-light) 0%, var(--green-dark) 100%);
    color: var(--white);
}

.areas-served h2,
.areas-served .section-subtitle {
    color: var(--white);
}

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

.areas-served .text-center {
    margin-top: 3rem;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.areas-served .phone-number-large {
    margin-top: 0.5rem;
}

.areas-served .phone-number-large a {
    color: var(--white);
    font-weight: 700;
    font-size: 1.4rem;
    text-decoration: none;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    transition: color 0.3s;
}

.areas-served .phone-number-large a:hover {
    color: var(--sun-yellow);
}

.city-item {
    background: rgba(255, 255, 255, 0.25);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
    color: var(--white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.city-item:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: scale(1.05);
}

/* Referral Program */
.referral-program {
    background: linear-gradient(135deg, var(--red-light) 0%, var(--red-dark) 100%);
    color: var(--white);
    text-align: center;
}

.referral-program h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

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

.referral-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.referral-cta {
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 1.5rem;
}

/* Call to Action */
.cta {
    background: linear-gradient(135deg, var(--blue-light) 0%, var(--blue-dark) 100%);
    color: var(--white);
    text-align: center;
}

.cta h2 {
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

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

.cta-email {
    margin-top: 2rem;
}

.cta-email a {
    color: var(--sun-yellow);
    text-decoration: none;
    font-weight: 600;
}

.cta-email a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--deep-blue);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    color: var(--sun-yellow);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--sun-yellow);
}

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

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

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

/* Contact Form Styles */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--deep-blue);
    font-weight: 600;
}

.contact-section .form-group label {
    color: var(--deep-blue);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--light-blue);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--ocean-blue);
}

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

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-top: 0.5rem;
    padding-left: 1.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0;
    transition: background-color 0.3s;
}

.checkbox-label:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--ocean-blue);
    flex-shrink: 0;
}

.checkbox-label span {
    color: var(--deep-blue);
    font-weight: 500;
    font-size: 1rem;
}

.contact-section .checkbox-label span {
    color: var(--deep-blue);
    font-weight: 500;
}

/* Services Detail Page */
.services-detail {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--blue-light) 0%, var(--blue-dark) 100%);
    color: var(--white);
}

.services-detail:nth-child(even) {
    background: linear-gradient(135deg, var(--green-light) 0%, var(--green-dark) 100%);
}

.services-detail h2,
.services-detail h3,
.services-detail h4 {
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.services-detail p,
.services-detail li {
    color: var(--white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.services-detail .service-detail-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
}

.services-detail .service-detail-content h2,
.services-detail .service-detail-content h3,
.services-detail .service-detail-content h4 {
    color: var(--white);
}

.services-detail .service-detail-content p {
    color: var(--white);
}

.services-detail .price-large {
    color: var(--sun-yellow);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.service-detail-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.service-detail-content h2 {
    text-align: left;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.service-detail-content h3 {
    color: var(--white);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.price-large {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--hibiscus-red);
    margin-bottom: 1.5rem;
}

.service-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--white);
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.process-steps {
    margin: 2rem 0;
}

.step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: start;
}

.step-number {
    background: var(--ocean-blue);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.step-content p {
    color: var(--white);
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.discount-list,
.benefit-list {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.discount-list li,
.benefit-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--white);
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.discount-list li::before,
.benefit-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--sun-yellow);
    font-weight: 700;
    font-size: 1.2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.service-cta {
    margin-top: 2rem;
}

.service-detail-image {
    position: sticky;
    top: 100px;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* About Page */
.about-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--blue-light) 0%, var(--blue-dark) 100%);
    color: var(--white);
}

.about-section:nth-child(even) {
    background: linear-gradient(135deg, var(--green-light) 0%, var(--green-dark) 100%);
}

.about-section h2,
.about-section h3,
.about-section h4 {
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.about-section p {
    color: var(--white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.about-section a,
.services-detail a {
    color: var(--sun-yellow);
    text-decoration: none;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    transition: color 0.3s;
}

.about-section a:hover,
.services-detail a:hover {
    color: var(--white);
    text-decoration: underline;
}

.about-section .about-content,
.about-section .team-content,
.about-section .difference-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
}

.about-section .story-intro {
    color: #8B0000;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.3);
    font-weight: 700;
}

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

.story-intro {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--ocean-blue);
    margin-bottom: 1.5rem;
}

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

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

.team-member {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.team-info h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.team-role {
    color: var(--sun-yellow);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.team-info p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

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

.value-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s;
}

.value-card:hover {
    border-color: var(--ocean-blue);
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0, 102, 204, 0.2);
}

.value-card h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.value-card p {
    color: var(--white);
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.difference-content {
    max-width: 900px;
    margin: 0 auto;
}

.difference-intro {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-medium);
}

.difference-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.difference-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.difference-item h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.difference-item p {
    color: var(--white);
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Contact Page */
.contact-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--blue-light) 0%, var(--blue-dark) 100%);
    color: var(--white);
}

.contact-section h2,
.contact-section h3 {
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.contact-section p {
    color: var(--white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.contact-section .contact-info,
.contact-section .contact-form-wrapper {
    background: rgba(0, 63, 116, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.contact-section .contact-item a {
    color: var(--sun-yellow);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    word-break: break-word;
    display: inline-block;
    max-width: 100%;
}

.contact-section .contact-item a:hover {
    color: var(--white);
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

.contact-info h2 {
    text-align: left;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    font-weight: 800;
}

.contact-info > p {
    color: var(--white);
    line-height: 1.8;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.5px;
}

.contact-item p {
    color: var(--white);
    line-height: 1.8;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    font-size: 1.05rem;
}

.contact-item a {
    color: var(--sun-yellow);
    text-decoration: none;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-size: 1.1rem;
    transition: all 0.3s;
}

.contact-item a:hover {
    color: var(--white);
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
    text-decoration: underline;
}

.contact-hours {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.contact-hours h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.contact-hours p {
    color: var(--white);
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.form-success {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-success h3 {
    color: var(--tropical-green);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.form-success p {
    color: var(--text-medium);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.form-success a {
    color: var(--ocean-blue);
    text-decoration: none;
    font-weight: 600;
}

.form-success a[href^="tel:"] {
    color: var(--hibiscus-red) !important;
    font-weight: 700;
}

.form-success .btn-primary {
    color: var(--white) !important;
}

.mahalo-image {
    max-width: 100%;
    height: auto;
    margin: 2rem 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.form-error {
    background: #ffebee;
    border: 2px solid var(--hibiscus-red);
    color: var(--board-red);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.form-error p {
    margin: 0;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    h2 {
        font-size: 2rem;
    }

    .nav-menu {
        gap: 1rem;
    }

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

    .gallery-item {
        max-width: 100%;
        width: 100%;
    }

    .before-after {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .ba-image {
        width: 100%;
    }

    .ba-image img {
        max-width: 100%;
        width: 100%;
    }

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

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .contact-section .contact-item a {
        font-size: 4.5vw;
        word-break: break-all;
    }

    .contact-section .contact-item p {
        font-size: 4.5vw;
    }

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

    .service-detail-image {
        position: static;
    }

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

    .contact-section .contact-item a {
        font-size: 4vw;
        word-break: break-all;
    }

    .contact-section .contact-item p {
        font-size: 4vw;
    }

    .difference-list {
        grid-template-columns: 1fr;
    }

    .logo-hero-content {
        grid-template-columns: 1fr !important;
        gap: 0;
    }

    .logo-page-header-content {
        grid-template-columns: 1fr !important;
        gap: 0;
    }

    .logo-page-header-side {
        padding: 2rem 1rem;
        order: 1;
        width: 100%;
    }

    .logo-page-header-side .main-logo {
        width: 100%;
    }

    .logo-page-header-side .main-logo img {
        width: 100%;
        max-width: 100%;
        height: auto;
        max-height: none;
    }

    .page-header-side {
        padding: 2rem 1rem;
        order: 2;
        width: 100%;
        text-align: center;
    }

    .page-header-side h1 {
        font-size: 2rem;
        color: var(--white) !important;
    }

    .page-header-side .hero-subtitle {
        font-size: 1.2rem;
        color: var(--white) !important;
    }

    .logo-side {
        padding: 2rem 1rem;
        order: 1;
        width: 100%;
    }

    .logo-side .main-logo {
        width: 100%;
    }

    .logo-side .main-logo img {
        width: 100%;
        max-width: 100%;
        height: auto;
        max-height: none;
    }

    .hero-side {
        padding: 2rem 1rem;
        order: 2;
        width: 100%;
        text-align: center;
    }

    .hero-side h1 {
        font-size: 2rem;
        color: var(--white) !important;
    }

    .hero-side .hero-subtitle {
        font-size: 1.2rem;
        color: var(--white) !important;
    }

    .hero-side .hero-description {
        font-size: 1rem;
        color: var(--white) !important;
    }
}

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

    .hero h1 {
        font-size: 1.75rem;
    }

    .nav-content {
        flex-direction: column;
        gap: 1rem;
    }

    .main-logo img {
        height: 80px;
    }

    .logo-hero-content {
        grid-template-columns: 1fr !important;
        gap: 0;
    }

    .logo-side {
        padding: 1.5rem 1rem;
        order: 1;
    }

    .logo-side .main-logo {
        width: 100%;
    }

    .logo-side .main-logo img {
        width: 100%;
        max-width: 100%;
        height: auto;
        max-height: none;
    }

    .hero-side {
        padding: 1rem;
        order: 2;
        text-align: center;
    }

    .hero-side h1 {
        font-size: 1.75rem;
        color: var(--white) !important;
    }

    .hero-side .hero-subtitle {
        font-size: 1.1rem;
        color: var(--white) !important;
    }

    .hero-side .hero-description {
        font-size: 0.95rem;
        color: var(--white) !important;
    }
}

