/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #094b65;
    --secondary: #38b6ff;
    --dark: #1a1a1a;
    --light: #ffffff;
    --success: #25D366;
    --accent: #ff6b6b;
    --sketch-color: #094b65;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    overflow-x: hidden;
    background: #fff;
    min-height: 100vh;
    color: #333;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background-color: var(--success);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    z-index: 10000;
    text-decoration: none;
    transition: var(--transition);
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* ================ HERO SECTION ================ */
.blob-hero {
    position: relative;
    padding: 150px 20px 80px;
    background: linear-gradient(135deg, #085672 0%, #094b65 100%);
    color: #ffffff;
    text-align: center;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.blob-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.blob-svg {
    max-width: 400px;
    max-height: 400px;
    aspect-ratio: 1/1;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.hero-content {
    text-align: center;
    max-width: 800px;
    z-index: 2;
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: var(--primary);
}

.hero-content p {
    font-size: 1.3rem;
    color: #000000;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 40px;
}

/* Hero CTA Buttons - UPDATED RESPONSIVE SIZES */
.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons - UPDATED RESPONSIVE SIZES */
.btn {
    display: inline-block;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: var(--transition);
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    min-width: 180px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.7s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--secondary);
    color: white;
    border: 2px solid var(--secondary);
}

.btn-primary:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(56, 182, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(9, 75, 101, 0.2);
}

/* Hero Specific Buttons - UPDATED RESPONSIVE SIZES */
.btn-hero {
    padding: 18px 45px !important;
    font-size: 1.2rem !important;
    min-width: 220px !important;
}

.btn-hero.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-hero.btn-secondary:hover {
    background: var(--primary);
    color: white;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

/* Sketch Style Base */
.sketch-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-bottom: 2px dashed var(--sketch-color);
    position: relative;
    overflow: hidden;
}

.sketch-section::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid var(--sketch-color);
    border-radius: 15px;
    opacity: 0.1;
    pointer-events: none;
}

.sketch-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 20px, rgba(9, 75, 101, 0.05) 20px, rgba(9, 75, 101, 0.05) 21px),
        repeating-linear-gradient(90deg, transparent, transparent 20px, rgba(9, 75, 101, 0.05) 20px, rgba(9, 75, 101, 0.05) 21px);
    pointer-events: none;
    opacity: 0.3;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 6px;
    background: var(--secondary);
    border-radius: 5px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 60px;
    max-width: 800px;
    line-height: 1.8;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Info Section */
.contact-info-section {
    padding: 100px 20px;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-info-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: var(--transition);
    border: 2px dashed var(--sketch-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary);
}

.contact-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: white;
    font-size: 2rem;
    transition: var(--transition);
}

.contact-info-card:hover .contact-card-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(56, 182, 255, 0.3);
}

.contact-info-card h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.contact-info-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
    flex-grow: 1;
}

.contact-info-card .btn {
    margin-top: 20px;
    width: 100%;
    max-width: 250px;
    padding: 14px 25px;
    font-size: 1rem;
    min-width: auto;
}

/* Contact Form Section */
.contact-form-section {
    padding: 100px 20px;
}

.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    margin: 0 auto;
    border: 2px dashed var(--sketch-color);
}

/* ================ CONTACT FORM STYLES ================ */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--primary);
    font-family: 'Montserrat', sans-serif;
}

.form-group label i {
    color: var(--secondary);
    font-size: 1.1rem;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
    background: #f8f9fa;
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary);
    background: white;
    box-shadow: 0 5px 15px rgba(56, 182, 255, 0.1);
}

.form-control.error {
    border-color: #ff6b6b;
    background: #fff5f5;
}

.form-control.success {
    border-color: #4CAF50;
    background: #f8fff9;
}

.form-control::placeholder {
    color: #999;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23094b65' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 50px;
    cursor: pointer;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
    max-height: 250px;
}

.char-counter {
    text-align: right;
    font-size: 0.85rem;
    color: #666;
    margin-top: 5px;
}

#char-counter {
    font-weight: 600;
}

.error-message {
    color: #ff6b6b;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

.form-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 10px;
    text-align: center;
}

#submit-btn {
    width: 100%;
    padding: 16px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

#submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
    margin-right: 10px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.form-status {
    grid-column: 1 / -1;
    padding: 15px 20px;
    border-radius: 10px;
    margin-top: 20px;
    display: none;
    text-align: center;
    font-weight: 500;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-status.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-status.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Location Section */
.location-section {
    padding: 100px 20px;
}

.location-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.location-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: var(--transition);
    height: 100%;
}

.location-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary);
}

.location-header {
    background: var(--primary);
    color: white;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.location-header i {
    font-size: 1.5rem;
    color: var(--secondary);
}

.location-header h3 {
    font-size: 1.4rem;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
}

.location-body {
    padding: 30px;
}

.location-address {
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 2px dashed #eee;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.location-address i {
    color: var(--secondary);
    margin-top: 5px;
}

.location-details {
    margin-bottom: 30px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #555;
}

.detail-item i {
    color: var(--secondary);
    width: 20px;
}

.location-card .btn {
    width: 100%;
    max-width: 250px;
    padding: 14px 25px;
    font-size: 1rem;
    min-width: auto;
}

/* ================ GOOGLE MAPS SECTION ================ */
.google-maps-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
}

.maps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.map-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border: 2px dashed var(--sketch-color);
}

.map-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary);
}

.map-card h3 {
    background: var(--primary);
    color: white;
    padding: 20px 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-card h3 i {
    color: var(--secondary);
}

.map-wrapper {
    padding: 0;
    overflow: hidden;
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 300px;
    border: none;
}

.map-info {
    padding: 25px 30px;
    border-top: 2px dashed #eee;
}

.map-info p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.map-info strong {
    color: var(--primary);
}

.map-cta {
    text-align: center;
    margin-top: 50px;
}

.map-cta .btn {
    padding: 16px 35px;
    font-size: 1.2rem;
    min-width: 220px;
}

.map-cta .btn i {
    margin-right: 10px;
}

/* Animation Classes */
.animated {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* ================ RESPONSIVE DESIGN ================ */
@media (max-width: 1200px) {
    .blob-hero {
        padding: 120px 20px 60px;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .contact-info-section,
    .contact-form-section,
    .location-section,
    .google-maps-section {
        padding: 80px 20px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .btn-hero {
        padding: 16px 40px !important;
        font-size: 1.1rem !important;
        min-width: 200px !important;
    }
}

@media (max-width: 992px) {
    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .btn-hero {
        padding: 16px 35px !important;
        min-width: 180px !important;
    }
}

@media (max-width: 768px) {
    .blob-hero {
        padding: 100px 15px 50px;
        min-height: 70vh;
    }
    
    .blob-svg {
        max-width: 300px;
        max-height: 300px;
    }
    
    .hero-content {
        padding: 30px 20px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn-hero {
        width: 100% !important;
        max-width: 300px !important;
        padding: 16px 30px !important;
        font-size: 1.1rem !important;
        min-width: auto !important;
    }
    
    .contact-info-section,
    .contact-form-section,
    .location-section,
    .google-maps-section {
        padding: 60px 15px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        padding: 0 10px;
        margin-bottom: 40px;
    }
    
    .contact-form-container {
        padding: 25px;
    }
    
    .contact-cards-grid,
    .location-cards,
    .maps-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .btn {
        padding: 14px 25px;
        font-size: 1rem;
        min-width: 150px;
    }
    
    .whatsapp-btn {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 576px) {
    .blob-hero {
        padding: 80px 10px 40px;
        min-height: 60vh;
    }
    
    .blob-svg {
        max-width: 250px;
        max-height: 250px;
    }
    
    .hero-content {
        padding: 25px 15px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .btn-hero {
        padding: 14px 25px !important;
        font-size: 1rem !important;
        max-width: 100% !important;
    }
    
    .contact-info-section,
    .contact-form-section,
    .location-section,
    .google-maps-section {
        padding: 50px 10px;
    }
    
    .section-title {
        font-size: 1.6rem;
        padding-bottom: 15px;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.95rem;
        min-width: 140px;
    }
    
    .contact-info-card,
    .location-card,
    .map-card {
        padding: 25px 20px;
    }
    
    .contact-form-container {
        padding: 20px;
    }
    
    .form-control {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    .form-group label {
        font-size: 0.95rem;
    }
    
    .map-card h3 {
        font-size: 1.1rem;
        padding: 15px 20px;
    }
    
    .map-info {
        padding: 20px;
    }
}

@media (max-width: 400px) {
    .hero-content h1 {
        font-size: 1.6rem;
    }
    
    .hero-content p {
        font-size: 0.95rem;
    }
    
    .btn-hero {
        padding: 12px 20px !important;
        font-size: 0.95rem !important;
    }
    
    .btn {
        padding: 10px 18px;
        font-size: 0.9rem;
        min-width: 130px;
    }
    
    .contact-cards-grid,
    .location-cards,
    .maps-container {
        gap: 15px;
    }
}