/* CSS Variables & Theme */
:root {
    --primary-red: #e53935; /* Bright Flame Red from Shirt */
    --primary-red-hover: #c62828;
    --accent-blue: #38b6ff; /* Tropical Light Blue from Shirt */
    --dark-bg: #111928; /* Deep Navy from Shirt */
    --light-bg: #f0f4f8;
    --white: #FFFFFF;
    --text-main: #333333;
    --text-muted: #666666;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 24px rgba(0,0,0,0.15);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--light-bg);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

.section {
    padding: 80px 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--primary-red);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.4);
}

.btn-primary:hover {
    background-color: var(--primary-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.6);
}

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

.btn-secondary:hover {
    background-color: var(--primary-red);
    color: var(--white);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    padding: 15px 0;
    transition: var(--transition);
}

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

.logo {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-red);
    font-weight: 700;
}

.logo-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 600;
    color: var(--text-main);
}

.nav-links a:hover {
    color: var(--primary-red);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--accent-blue);
    font-size: 1.1rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-main);
    position: absolute;
    transition: var(--transition);
}

.mobile-menu-btn span:first-child { top: 0; }
.mobile-menu-btn span:nth-child(2) { top: 9px; }
.mobile-menu-btn span:last-child { top: 18px; }

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--dark-bg);
    background-image: url("bg-leaves.png");
    background-size: 400px;
    background-repeat: repeat;
    padding-top: 80px;
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(17,25,40,0.1) 0%, rgba(17,25,40,0.5) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    background: rgba(17, 25, 40, 0.85);
    padding: 50px 40px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(56, 182, 255, 0.15);
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.badge {
    display: inline-block;
    background-color: rgba(56, 182, 255, 0.15);
    color: var(--accent-blue);
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 20px;
}

.hero .highlight {
    color: var(--primary-red);
}

.hero p {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
}

.license-info {
    font-size: 0.9rem;
    color: var(--text-muted);
    opacity: 0.8;
}

.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.wave-divider .shape-fill {
    fill: var(--light-bg);
}

/* Services */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-red);
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background-color: var(--accent-blue);
    bottom: -10px;
    left: 25%;
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--primary-red);
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    background-color: rgba(211, 47, 47, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-red);
    transition: var(--transition);
}

.service-card:hover .icon-wrapper {
    background-color: var(--primary-red);
    color: var(--white);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* About Section */
.about {
    background-color: var(--white);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--accent-blue);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hawaiian-frame {
    position: relative;
    border-radius: var(--radius-lg);
    padding: 15px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--accent-blue) 100%);
    box-shadow: var(--shadow-lg);
}

.image-placeholder {
    width: 100%;
    background-color: #eee;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.image-placeholder img {
    width: 100%;
    height: auto;
    display: block;
}

/* CTA & Areas Section */
.cta-section {
    background-color: var(--dark-bg);
    color: var(--white);
    position: relative;
    /* Subtle dark tropical pattern */
    background-image: url("bg-leaves.png");
    background-size: 400px;
    background-repeat: repeat;
}

.cta-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-red) 0%, #9e1b1b 100%);
    padding: 50px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.cta-box h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-btn-anim {
    background-color: var(--white);
    color: var(--primary-red);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    animation: pulse 2s infinite;
}

.cta-btn-anim:hover {
    background-color: var(--light-bg);
    color: var(--primary-red-hover);
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

.areas-content {
    background: rgba(17, 25, 40, 0.85);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(56, 182, 255, 0.15);
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.areas-content h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 15px;
}

.areas-content p {
    color: #ccc;
    margin-bottom: 25px;
}

.areas-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    list-style: none;
}

.areas-list li {
    position: relative;
    padding-left: 25px;
    color: #eee;
    font-weight: 600;
}

.areas-list li::before {
    content: '🌺'; /* Subtle hawaiian touch */
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background-color: var(--dark-bg);
    color: #fff;
    padding: 80px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-info h3 {
    font-size: 2rem;
    color: var(--primary-red);
    margin-bottom: 5px;
}

.footer-info .license {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.contact-details p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-details a {
    color: #ccc;
}

.contact-details a:hover {
    color: var(--primary-red);
}

.footer-form {
    background: rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(56, 182, 255, 0.2);
}

.footer-form h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.footer-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-form input,
.footer-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #333;
    background: #222;
    color: #fff;
    border-radius: var(--radius-sm);
    font-family: inherit;
    transition: var(--transition);
}

.footer-form input:focus,
.footer-form textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 2px rgba(211, 47, 47, 0.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #666;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hero h1 { font-size: 3rem; }
    .about-container { grid-template-columns: 1fr; }
    .cta-container { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1fr; }
    
    .hawaiian-frame { max-width: 500px; margin: 0 auto; }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta .btn {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    /* Mobile Menu Active State */
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 20px;
        box-shadow: var(--shadow-md);
        text-align: center;
    }
    
    .hero h1 { font-size: 2.5rem; }
    .hero-buttons { flex-direction: column; }
    
    .areas-list { grid-template-columns: 1fr; }
    
    .wave-divider svg {
        height: 35px;
        width: calc(200% + 1.3px);
        transform: translateX(-25%);
    }
}
