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

:root {
    --primary-color: #00A7B5;
    --secondary-color: #FF6B35;
    --accent-color: #FFA940;
    --dark-teal: #006D7A;
    --cream: #F5E6D3;
    --cream-light: #FFF4E0;
    --text-dark: #2C3E50;
    --text-light: #FFFFFF;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-hover: rgba(0, 0, 0, 0.2);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Accessibility Utilities */
.skip-to-content {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    z-index: 10000;
    transition: top 0.3s ease;
}

.skip-to-content:focus {
    top: 0;
}

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Focus styles for keyboard navigation */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

/* Improved button focus */
.btn:focus {
    outline: 3px solid var(--accent-color);
    outline-offset: 3px;
}

html {
    scroll-behavior: smooth;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--text-light);
    box-shadow: 0 2px 10px var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand .brand-text {
    font-family: 'Lobster', cursive;
    font-size: 1.5rem;
    color: var(--primary-color);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

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

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-teal) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><radialGradient id="sun" cx="50%" cy="30%"><stop offset="0%" style="stop-color:%23FFEB3B;stop-opacity:1" /><stop offset="100%" style="stop-color:%23FF9800;stop-opacity:0" /></radialGradient></defs><ellipse cx="600" cy="180" rx="120" ry="120" fill="url(%23sun)"/><path d="M 0,400 Q 300,350 600,380 T 1200,400 L 1200,600 L 0,600 Z" fill="%2300A7B5" opacity="0.3"/><path d="M 0,420 Q 300,380 600,410 T 1200,420 L 1200,600 L 0,600 Z" fill="%2300A7B5" opacity="0.5"/></svg>');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 167, 181, 0.8) 0%, rgba(0, 109, 122, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--text-light);
    padding: 2rem;
}

.hero-logo {
    max-width: 400px;
    width: 90%;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    animation: fadeInScale 0.8s ease-out;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-title {
    font-family: 'Lobster', cursive;
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: var(--cream-light);
    -webkit-text-stroke: 2px var(--secondary-color);
    paint-order: stroke fill;
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-tagline {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #E85D2A 100%);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #E85D2A 0%, var(--secondary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
}

/* Services Section */
.services-section {
    padding: 5rem 0;
}

.alt-bg {
    background: var(--cream);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 800;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

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

.service-card {
    background: transparent;
    border-radius: 15px;
    overflow: visible;
    box-shadow: none;
    transition: transform 0.3s ease;
    position: relative;
}

.service-card-inner {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card:hover .service-card-inner {
    box-shadow: 0 10px 30px var(--shadow-hover);
}

.service-card.featured .service-card-inner {
    box-shadow: 0 0 0 3px var(--accent-color), 0 5px 20px var(--shadow);
}

.service-card.featured:hover .service-card-inner {
    box-shadow: 0 0 0 3px var(--accent-color), 0 10px 30px var(--shadow-hover);
}

.service-badge {
    position: absolute;
    top: 25px;
    right: -45px;
    background: linear-gradient(135deg, var(--secondary-color), #E85D2A);
    color: white;
    padding: 8px 50px;
    transform: rotate(45deg);
    font-weight: 700;
    font-size: 0.8rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    z-index: 10;
}

.service-header {
    padding: 2rem;
    text-align: center;
    color: white;
    border-radius: 15px 15px 0 0;
    position: relative;
    z-index: 1;
}

.service-header.basic {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-teal));
}

.service-header.intermediate {
    background: linear-gradient(135deg, var(--secondary-color), #E85D2A);
}

.service-header.expert {
    background: linear-gradient(135deg, var(--dark-teal), #004D57);
}

.service-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.service-price {
    font-size: 2.5rem;
    font-weight: 900;
    margin: 0.5rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.service-duration {
    font-size: 1rem;
    opacity: 0.95;
    font-style: italic;
    font-weight: 500;
}

.service-body {
    padding: 2rem;
    background: white;
    border-radius: 0 0 15px 15px;
    position: relative;
    z-index: 1;
}

.service-description {
    font-style: italic;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

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

/* Add-Ons Section */
.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.addon-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px var(--shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--primary-color);
}

.addon-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px var(--shadow-hover);
}

.addon-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.addon-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.price-note {
    font-size: 1rem;
    color: #666;
    font-weight: 400;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--cream) 0%, #FFFFFF 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.info-item p {
    font-size: 1.1rem;
}

.info-item a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: var(--primary-color);
}

.contact-form-container {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--dark-teal);
    color: var(--text-light);
    padding: 3rem 0 1rem;
}

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

.footer-brand p {
    opacity: 0.9;
}

.footer-brand h3 {
    font-family: 'Lobster', cursive;
    color: var(--accent-color);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.footer-links h4,
.footer-hours h4 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

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

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

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.footer-hours p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-logo {
        max-width: 300px;
        width: 85%;
        margin-bottom: 1.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 500px;
        margin: 0 auto;
    }
    
    /* Mobile Condensed Card Style */
    .service-card {
        border-radius: 10px;
        margin-bottom: 0.5rem;
    }
    
    .service-card.featured {
        border-width: 2px;
    }
    
    .service-badge {
        top: 20px;
        right: -35px;
        padding: 6px 40px;
        font-size: 0.7rem;
    }
    
    .service-header {
        padding: 1.5rem 1rem;
        border-radius: 10px 10px 0 0;
        position: relative;
    }
    
    .service-header h3 {
        font-size: 1.5rem;
        margin-bottom: 0.25rem;
    }
    
    .service-price {
        font-size: 2rem;
        margin: 0.25rem 0;
        font-weight: 700;
    }
    
    .service-duration {
        font-size: 0.9rem;
        margin-top: 0.25rem;
    }
    
    .service-body {
        padding: 1.25rem 1rem;
        background: white;
    }
    
    .service-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        font-style: italic;
        color: #666;
    }
    
    .service-features {
        margin: 0;
        padding: 0;
        list-style: none;
    }
    
    .service-features li {
        padding: 0.4rem 0;
        padding-left: 1.5rem;
        font-size: 0.95rem;
        position: relative;
        line-height: 1.4;
    }
    
    .service-features li::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: var(--primary-color);
        font-weight: bold;
        font-size: 1.1rem;
    }
    
    /* Mobile Add-ons Grid */
    .addons-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .addon-card {
        padding: 1.25rem 1rem;
        border-radius: 8px;
        border-top-width: 3px;
    }
    
    .addon-card h4 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .addon-price {
        font-size: 1.5rem;
        font-weight: 700;
    }
    
    .price-note {
        font-size: 0.9rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        max-width: 250px;
        width: 90%;
        margin-bottom: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .service-price {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .service-header h3 {
        font-size: 1.3rem;
    }
    
    .service-features li {
        font-size: 0.9rem;
    }
    
    .services-section {
        padding: 3rem 0;
    }
    
    .service-card {
        box-shadow: 0 2px 10px var(--shadow);
    }
}

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

.service-card,
.addon-card {
    animation: fadeIn 0.6s ease-out;
}
