/* Reset and Base Styles */
* {
    margin: 50;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Theme Colors - Based on Sea Coral Logo */
:root {
    /* Primary brand colors from the logo */
    --primary-color: #00B4D8;   /* The bright, vibrant turquoise of the wave and 'C' */
    --secondary-color: #2F2F2F; /* The dark, sophisticated gray of the 'S' and text */
    
    /* Supporting and accent colors */
    --accent-wave: #0087A3;      /* A deeper, richer shade of the turquoise wave */
    --accent-coral: #C9665B;     /* The soft, muted coral from the right side of the wave */
    
    /* Text and background colors for readability */
    --text-dark: var(--secondary-color); /* Matches the gray 'S' for main text */
    --text-light: #6E7B83;      /* A slightly lighter gray for secondary text */
    
    --white: #ffffff;
    --light-bg: #F5F9FA;        /* A very subtle, cool-toned background */
    --border-color: #D9E3E8;    /* A light, muted gray for borders and lines */
    
    /* Status colors, inspired by the theme */
    --success-color: #00A896;   /* Fresh, clean teal for positive feedback */
    --warning-color: #F9C74F;   /* A golden-yellow tone for a touch of warmth */
    --danger-color: #E63946;    /* A strong coral-red for errors and alerts */
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Font Awesome Icon Styling */
.fas {
    margin-right: 8px;
    font-size: 0.875rem;
}

.btn .fas {
    margin-right: 8px;
}

.section-badge .fas {
    margin-right: 6px;
    font-size: 1rem;
}

.section-title .fas {
    padding-top: 20px;
    margin-right: 12px;
    color: var(--primary-color);
    font-size: 1.125rem;
}

.feature-icon .fas {
    color: var(--success-color);
    margin-right: 0;
}

.review-stars .fas {
    color: #fbbf24;
    margin-right: 2px;
}

.cta-title .fas {
    margin-right: 12px;
    color: var(--warning-color);
}

/* Phone and Email specific icon sizing */
.fas.fa-phone,
.fas.fa-envelope {
    font-size: 0.75rem;
}

/* Typography */
.text-primary { color: var(--primary-color); }
.text-secondary { color: var(--secondary-color); }

/* Enhanced Button Animations */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    animation: buttonGlow 2s ease-in-out infinite alternate;
}

.btn-primary:hover {
    background-color: var(--accent-wave);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(45, 212, 191, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.btn-outline::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-outline:hover::after {
    left: 0;
}

.btn-outline:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45, 212, 191, 0.3);
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

/* Enhanced Header with Animation */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    animation: slideDown 0.8s ease-out;
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 150px;
    height: 80px;
}

.logo-text {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    animation: typeWriter 2s ease-out 0.5s both;
}

.nav-buttons {
    display: flex;
    gap: 16px;
    animation: fadeInRight 1s ease-out 0.3s both;
}

/* Enhanced Hero Section Animations */
.hero {
    margin-top: 30px;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    animation: slideInLeft 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-dark);
    animation: typeWriter 2s ease-out 0.5s both;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 32px;
    animation: fadeInUp 1s ease-out 1s both;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: bounceIn 1s ease-out 1.5s both;
}

.hero-image {
    animation: slideInRight 1s ease-out 0.3s both;
}

.hero-img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    animation: float 6s ease-in-out infinite;
}

.hero-img:hover {
    transform: scale(1.02) rotate(1deg);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

/* Enhanced Current Offers Section */
.current-offers {
    padding: 60px 0;
    background: var(--white);
    overflow: hidden;
}

.offers-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.offers-image-section {
    position: relative;
}

.offers-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.offers-main-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.floating-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(45deg, var(--danger-color), #ff6b6b);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(231, 57, 70, 0.3);
    animation: float 3s ease-in-out infinite;
    z-index: 10;
}

.floating-badge i {
    margin-right: 8px;
    animation: pulse 2s ease-in-out infinite;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.75));
    padding: 40px 30px 30px;
    color: var(--white);
    backdrop-filter: blur(5px);
}

.overlay-text {
    text-align: center;
}

.overlay-text h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 12px;
    background: linear-gradient(45deg, var(--white), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.overlay-text p {
    font-size: 1.125rem;
    opacity: 0.95;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    letter-spacing: 0.5px;
    margin: 0;
}

.offers-content-section {
    padding-left: 20px;
}

.offers-content-section .section-header {
    text-align: left;
    margin-bottom: 30px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-top: 16px;
    line-height: 1.6;
}

.offers-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
}

.offer-item {
    display: flex;
    align-items: center;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 18px;
    transition: all 0.4s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.offer-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(45, 212, 191, 0.1), transparent);
    transition: left 0.5s ease;
}

.offer-item:hover::before {
    left: 100%;
}

.offer-item:hover {
    transform: translateX(8px) translateY(-2px);
    box-shadow: 0 12px 30px rgba(45, 212, 191, 0.2);
    border-color: var(--primary-color);
}

.offer-item.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-wave));
    color: var(--white);
    transform: scale(1.02);
}

.offer-item.urgent {
    border-color: var(--danger-color);
    background: linear-gradient(135deg, #fef2f2, var(--white));
    border-width: 3px;
}

.offer-icon {
    margin-left: auto;
    font-size: 1.5rem;
    color: var(--primary-color);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.offer-item.featured .offer-icon {
    color: var(--white);
}

.offer-item:hover .offer-icon {
    transform: scale(1.1) rotate(5deg);
    opacity: 1;
}

.cta-note {
    margin-top: 12px;
    font-size: 0.875rem;
    color: var(--text-light);
    font-style: italic;
    text-align: center;
}

/* Enhanced Find Us Section */
.find-us {
    padding: 60px 0;
    background: var(--light-bg);
    overflow: hidden;
}

.find-us-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.find-us-image-section {
    position: relative;
    order: 1;
}

.find-us-content-section {
    order: 2;
    padding-left: 20px;
}

.find-us-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.find-us-main-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.location-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--danger-color);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50% 50% 50% 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    box-shadow: 0 8px 20px rgba(231, 57, 70, 0.4);
    animation: bounce 2s ease-in-out infinite;
    z-index: 10;
}

.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
}

.overlay-badge {
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.overlay-badge i {
    margin-right: 6px;
    color: var(--danger-color);
}

.find-us-content-section .section-header {
    text-align: left;
    margin-bottom: 30px;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.address-card {
    display: flex;
    align-items: center;
    background: var(--white);
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.address-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.address-icon {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-right: 20px;
    width: 60px;
    text-align: center;
}

.address-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.address-content p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    background: var(--white);
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.contact-icon {
    font-size: 1rem;
    color: var(--primary-color);
    margin-right: 12px;
    width: 30px;
    text-align: center;
}

.contact-content h4 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-content a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-content a:hover {
    color: var(--primary-color);
}

.office-hours {
    background: var(--white);
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.office-hours h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.office-hours h4 i {
    color: var(--primary-color);
    margin-right: 8px;
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item.closed {
    opacity: 0.6;
}

.day {
    font-weight: 500;
    color: var(--text-dark);
}

.time {
    color: var(--text-light);
    font-weight: 500;
}

.hours-item.closed .time {
    color: var(--danger-color);
    font-style: italic;
}

.location-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.location-btn {
    flex: 1;
    min-width: 140px;
    text-align: center;
}

/* Animation Classes */
.animate-fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

.animate-slide-right {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideRight 0.8s ease forwards;
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease forwards;
}

.animate-bounce {
    animation: gentleBounce 2s ease-in-out infinite;
}

.pulse-animation {
    animation: pulse 2s ease-in-out infinite;
}

/* Animation Delays */
[data-delay="0.1s"] { animation-delay: 0.1s; }
[data-delay="0.2s"] { animation-delay: 0.2s; }
[data-delay="0.3s"] { animation-delay: 0.3s; }
[data-delay="0.4s"] { animation-delay: 0.4s; }
[data-delay="0.5s"] { animation-delay: 0.5s; }

/* Keyframe Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gentleBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translate(-50%, -50%) translateY(0);
    }
    40% {
        transform: translate(-50%, -50%) translateY(-10px);
    }
    60% {
        transform: translate(-50%, -50%) translateY(-5px);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

/* New overlay text animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glow {
    from {
        text-shadow: 0 2px 4px rgba(0,0,0,0.3), 0 0 20px rgba(45, 212, 191, 0.4);
    }
    to {
        text-shadow: 0 2px 4px rgba(0,0,0,0.3), 0 0 30px rgba(45, 212, 191, 0.6), 0 0 40px rgba(45, 212, 191, 0.3);
    }
}

@keyframes subtlePulse {
    0%, 100% {
        opacity: 0.95;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.01);
    }
}

/* Enhanced Page-wide Animations */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(50px);
    }
    50% {
        opacity: 1;
        transform: scale(1.05) translateY(-10px);
    }
    70% {
        transform: scale(0.95) translateY(0);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes typeWriter {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 100%;
        opacity: 1;
    }
}

@keyframes slideInStagger {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes cardSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes sparkle {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes buttonGlow {
    from {
        box-shadow: 0 0 5px rgba(45, 212, 191, 0.5);
    }
    to {
        box-shadow: 0 0 20px rgba(45, 212, 191, 0.8), 0 0 30px rgba(45, 212, 191, 0.4);
    }
}

@keyframes rotate360 {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Design for Enhanced Sections */
@media (max-width: 768px) {
    .offers-content,
    .find-us-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .offers-content-section,
    .find-us-content-section {
        padding-left: 0;
        order: 2;
    }
    
    .offers-image-section,
    .find-us-image-section {
        order: 1;
    }
    
    .offers-image-wrapper,
    .find-us-image-wrapper {
        transform: none;
    }
    
    .offers-main-img,
    .find-us-main-img {
        height: 300px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .location-actions {
        flex-direction: column;
    }
    
    .location-btn {
        min-width: auto;
    }
}

/* Enhanced Why Choose Section */
.why-choose {
    padding: 80px 0;
    background: var(--light-bg);
    overflow: hidden;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-choose-text {
    animation: slideInLeft 1s ease-out;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1.125rem;
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInStagger 0.6s ease-out forwards;
}

.feature:nth-child(1) { animation-delay: 0.2s; }
.feature:nth-child(2) { animation-delay: 0.4s; }
.feature:nth-child(3) { animation-delay: 0.6s; }
.feature:nth-child(4) { animation-delay: 0.8s; }
.feature:nth-child(5) { animation-delay: 1.0s; }

.feature-icon {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    animation: pulse 2s ease-in-out infinite;
}

.feature:hover .feature-icon {
    transform: scale(1.2) rotate(360deg);
    color: var(--primary-color);
}

.feature-img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    animation: slideInRight 1s ease-out 0.3s both;
    transition: all 0.4s ease;
}

.feature-img:hover {
    transform: scale(1.05) rotate(-2deg);
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

/* Location Section (Legacy - keeping for backward compatibility) */
.location {
    padding: 80px 0;
    background: var(--white);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.address h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.address p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 16px;
}

.location-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.location-link:hover {
    text-decoration: underline;
}

.map-img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Enhanced Reviews Section */
.reviews {
    padding: 80px 0;
    background: var(--light-bg);
    overflow: hidden;
}

.reviews .section-title {
    animation: fadeInUp 1s ease-out;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.review-card {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    transform: translateY(20px);
    opacity: 0;
    animation: cardSlideUp 0.8s ease-out forwards;
}

.review-card:nth-child(1) { animation-delay: 0.2s; }
.review-card:nth-child(2) { animation-delay: 0.4s; }
.review-card:nth-child(3) { animation-delay: 0.6s; }

.review-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.review-stars {
    font-size: 1.25rem;
    margin-bottom: 16px;
    animation: sparkle 2s ease-in-out infinite;
}

.review-text {
    font-size: 1.125rem;
    font-style: italic;
    margin-bottom: 16px;
    color: var(--text-dark);
    position: relative;
}

.review-text::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-color);
    position: absolute;
    top: -20px;
    left: -20px;
    opacity: 0.3;
    animation: fadeIn 1s ease-out 0.5s both;
}

.review-author {
    font-weight: 600;
    color: var(--text-light);
    animation: slideInUp 0.6s ease-out 0.8s both;
}

/* Enhanced Final CTA Section */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-wave));
    text-align: center;
    overflow: hidden;
    position: relative;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

.cta-content {
    animation: zoomIn 1s ease-out;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    animation: pulse 3s ease-in-out infinite;
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 32px;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: bounceIn 1s ease-out 0.6s both;
}

.final-cta .btn-outline {
    background-color: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

.final-cta .btn-outline:hover {
    background-color: transparent;
    color: var(--white);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 40px;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.modal-content h2 {
    color: var(--text-dark);
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 24px;
    text-align: center;
}

.close {
    color: var(--text-light);
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 24px;
    transition: color 0.3s ease;
}

.close:hover {
    color: var(--text-dark);
}

/* Form Styles for Appointment Modal */
.appointment-form {
    margin-top: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    background-color: var(--white);
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Submit Button Styling */
.appointment-form .btn {
    width: 100%;
    margin-top: 24px;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 24px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
    display: block;
    box-sizing: border-box;
}

.appointment-form .btn:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 212, 191, 0.3);
}

.appointment-form .btn:disabled {
    background-color: var(--text-light);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.form-message {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    display: none;
    font-size: 14px;
}

.form-message.success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
}

.form-message.error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #ef4444;
}

.form-message.loading {
    background-color: #e0f2fe;
    color: #0c4a6e;
    border: 1px solid #0891b2;
}

/* Enhanced Form Validation Styles */
.form-group.error input,
.form-group.error textarea {
    border-color: var(--danger-color);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
    background-color: #fef2f2;
}

.form-group.success input,
.form-group.success textarea {
    border-color: var(--success-color);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
    background-color: #f0fdf4;
}

.form-group.error label {
    color: var(--danger-color);
}

.form-group.success label {
    color: var(--success-color);
}

.field-error {
    margin-top: 6px;
    font-size: 12px;
    color: var(--danger-color);
    display: flex;
    align-items: center;
    gap: 4px;
    animation: slideIn 0.3s ease;
}

.field-error:before {
    content: "\f071";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 14px;
}

.char-counter {
    margin-top: 4px;
    font-size: 11px;
    color: var(--text-light);
    text-align: right;
    transition: color 0.3s ease;
}

.char-counter.warning {
    color: var(--warning-color);
    font-weight: 500;
}

.char-counter.error {
    color: var(--danger-color);
    font-weight: 600;
}

/* Success indicator for valid fields */
.form-group.success input:after,
.form-group.success textarea:after {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--success-color);
    font-size: 16px;
}

/* Input focus states with validation */
.form-group input:focus:valid,
.form-group textarea:focus:valid {
    border-color: var(--success-color);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-group input:focus:invalid,
.form-group textarea:focus:invalid {
    border-color: var(--danger-color);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Loading state for form submission */
.appointment-form.loading {
    opacity: 0.7;
    pointer-events: none;
}

.appointment-form.loading .btn {
    position: relative;
}

.appointment-form.loading .btn:after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid transparent;
    border-top: 2px solid #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Animations */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Form validation tooltips */
.form-group {
    position: relative;
}

.form-tooltip {
    position: absolute;
    bottom: -35px;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
}

.form-tooltip:before {
    content: "";
    position: absolute;
    top: -6px;
    left: 20px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid var(--text-dark);
}

.form-group:hover .form-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Modal Responsive Design */
@media (max-width: 768px) {
    .modal-content {
        margin: 2% auto;
        padding: 24px;
        width: 95%;
        max-height: 95vh;
    }
    
    .modal-content h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .appointment-form .btn {
        padding: 14px 20px;
        font-size: 16px;
    }
}



/* Contact Options Styling */
.contact-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 32px 0;
}

.contact-method {
    text-align: center;
    padding: 32px 24px;
    background: var(--light-bg);
    border-radius: 16px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.contact-method:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(45, 212, 191, 0.15);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.contact-method h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-method p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1rem;
}

.contact-method .btn {
    font-size: 1rem;
    padding: 12px 20px;
    word-break: break-all;
}

.booking-hours {
    text-align: center;
    margin-top: 32px;
    padding: 24px;
    background: var(--white);
    border-radius: 12px;
    border: 2px solid var(--primary-color);
}

.booking-hours h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.booking-hours p {
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.6;
}

.emergency-note {
    color: var(--danger-color);
    font-weight: 500;
    margin-top: 16px;
    font-style: italic;
}

/* Responsive Design for Contact Options */
@media (max-width: 768px) {
    .contact-options {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .contact-method {
        padding: 24px 16px;
    }
    
    .contact-method .btn {
        font-size: 0.9rem;
        padding: 10px 16px;
    }
}



/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.footer-info .logo {
    margin-bottom: 24px;
}

.footer-info .logo-img {
    filter: brightness(0) invert(1);
}

.footer-info p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 8px;
}

.footer-compliance h4 {
    color: var(--primary-color);
    margin-bottom: 16px;
}

.footer-compliance ul {
    list-style: none;
}

.footer-compliance li {
    color: rgba(255,255,255,0.8);
    margin-bottom: 8px;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .why-choose-content,
    .location-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .nav-buttons {
        flex-direction: column;
        gap: 8px;
    }
    
    .hero-cta,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
    }
    
    /* Legacy specials section responsive */
    .specials-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .offers-left {
        padding-right: 0;
        order: 2;
    }
    
    .offers-right {
        order: 1;
    }
    
    .special-img {
        height: 300px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .modal-content {
        margin: 5% auto;
        padding: 24px;
    }
}

/* Privacy Policy Styles */
.privacy-content {
    padding: 120px 0 80px;
    background: var(--white);
    min-height: 100vh;
}

.privacy-header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 2px solid var(--border-color);
}

.privacy-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.privacy-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.last-updated {
    font-size: 1rem;
    color: var(--text-light);
    font-style: italic;
}

.privacy-sections {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-section {
    margin-bottom: 48px;
    padding: 32px;
    background: var(--light-bg);
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.privacy-section h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-color);
}

.privacy-section h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.privacy-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.privacy-section ul {
    margin: 16px 0;
    padding-left: 24px;
}

.privacy-section li {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.privacy-section strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Google Ads Compliance Section */
.compliance-section {
    background: linear-gradient(135deg, var(--light-bg), var(--white));
    border: 2px solid var(--primary-color);
    position: relative;
}

.compliance-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 16px 16px 0 0;
}

.compliance-grid {
    display: grid;
    gap: 24px;
    margin-top: 24px;
}

.compliance-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border-left: 4px solid var(--success-color);
}

.compliance-check {
    font-size: 1.5rem;
    color: var(--success-color);
    flex-shrink: 0;
    margin-top: 2px;
}

.compliance-text h4 {
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 1.125rem;
}

.compliance-text p {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 1rem;
}

/* Contact Info in Privacy Policy */
.contact-info {
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    margin-top: 16px;
}

.contact-info p {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.contact-info strong {
    color: var(--primary-color);
}

/* Footer Links */
.footer-links {
    color: rgba(255,255,255,0.8);
}

.footer-links h4 {
    color: var(--primary-color);
    margin-bottom: 16px;
    font-size: 1.125rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* Logo Link Styling */
.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

/* Responsive Design for Privacy Policy */
@media (max-width: 768px) {
    .privacy-header h1 {
        font-size: 2.5rem;
    }
    
    .privacy-section {
        padding: 24px 16px;
        margin-bottom: 32px;
    }
    
    .privacy-section h2 {
        font-size: 1.75rem;
    }
    
    .compliance-item {
        flex-direction: column;
        text-align: center;
    }
    
    .compliance-check {
        align-self: center;
    }
}