/* ====== SUNSHINE CONTRACTORS ====== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700;800&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --primary: #0C2E2E;
    --gold: #C4954A;
    --gold-hover: #A87B3A;
    --light-green: #1A4A4A;
    --text: #333333;
    --text-light: #666666;
    --bg-light: #F5F5F5;
    --white: #FFFFFF;
}

body { font-family: 'Inter', sans-serif; color: var(--text); line-height: 1.7; }
h1,h2,h3,h4,h5,h6 { font-family: 'Poppins', sans-serif; color: var(--primary); line-height: 1.3; }
a { color: var(--gold); text-decoration: none; transition: color .3s; }
a:hover { color: var(--gold-hover); }
img { max-width: 100%; height: auto; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== HEADER ===== */
.site-header {
    background: var(--primary);
    position: sticky; top: 0; z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    max-width: 1200px; margin: 0 auto; padding: 10px 20px;
}
.logo img { width: 130px; height: auto; display: block; object-fit: contain; margin-top: 4px; }
.main-nav { display: flex; align-items: center; gap: 5px; list-style: none; }
.main-nav a {
    color: #fff; font-size: 14px; font-weight: 500; text-transform: uppercase;
    letter-spacing: 0.5px; padding: 8px 14px; transition: color .3s;
}
.main-nav a:hover, .main-nav .active a { color: var(--gold); }
.main-nav .nav-cta a {
    background: var(--gold); color: #fff !important; border-radius: 6px;
    padding: 10px 22px; font-weight: 600;
}
.main-nav .nav-cta a:hover { background: var(--gold-hover); }

/* Mobile menu */
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 5px; }
.menu-toggle span { display: block; width: 25px; height: 3px; background: #fff; margin: 5px 0; transition: .3s; }

@media (max-width: 920px) {
    .menu-toggle { display: block; }
    .main-nav {
        display: none; flex-direction: column; position: absolute;
        top: 100%; left: 0; right: 0; background: var(--primary);
        padding: 20px; gap: 0; box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }
    .main-nav.active { display: flex; }
    .main-nav li { width: 100%; }
    .main-nav a { display: block; padding: 12px 20px; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .main-nav .nav-cta a { display: inline-block; margin: 10px 20px; }
    .logo img { width: 95px; height: auto; }
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--light-green) 100%);
    color: #fff; text-align: center; padding: 80px 20px;
}
.hero h1 { color: #fff; font-size: 48px; margin-bottom: 20px; }
.hero p { color: #e0e0e0; font-size: 20px; max-width: 800px; margin: 0 auto 35px; line-height: 1.7; }
.hero-btns { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }

@media (max-width: 768px) {
    .hero h1 { font-size: 32px; }
    .hero p { font-size: 17px; }
    .hero { padding: 50px 20px; }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block; padding: 14px 32px; border-radius: 6px;
    font-weight: 600; font-size: 16px; transition: all .3s; cursor: pointer; border: none;
}
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--gold-hover); color: #fff; transform: translateY(-2px); box-shadow: 0 4px 15px rgba(196,149,74,0.4); }
.btn-outline { border: 2px solid #fff; color: #fff; background: transparent; }
.btn-outline:hover { background: rgba(255,255,255,0.1); color: #fff; }
.btn-outline-gold { border: 2px solid var(--gold); color: var(--gold); background: transparent; }
.btn-outline-gold:hover { background: var(--gold); color: #fff; }

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.section-dark { background: var(--primary); color: #fff; }
.section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-light { background: var(--bg-light); }
.section-white { background: #fff; }
.section-title { text-align: center; font-size: 36px; margin-bottom: 15px; }
.section-subtitle { text-align: center; color: var(--text-light); margin-bottom: 50px; max-width: 700px; margin-left: auto; margin-right: auto; }

@media (max-width: 768px) {
    .section { padding: 50px 0; }
    .section-title { font-size: 28px; }
}

/* ===== GRID ===== */
.grid { display: grid; gap: 30px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); }

/* ===== CARDS ===== */
.card {
    background: #fff; border-radius: 12px; padding: 35px 25px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08); transition: all .3s;
    border-bottom: 4px solid transparent;
}
.card:hover { transform: translateY(-8px); box-shadow: 0 15px 40px rgba(0,0,0,0.12); border-bottom-color: var(--gold); }
.card-center { text-align: center; }
.card-dark { background: rgba(255,255,255,0.05); border: 1px solid rgba(196,149,74,0.2); border-bottom: 1px solid rgba(196,149,74,0.2); box-shadow: none; }
.card-dark:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); box-shadow: none; border-bottom-color: rgba(196,149,74,0.2); }
.card-dark h4 { color: var(--gold); }
.card-dark p { color: #ccc; }
.card-dark h3 { color: var(--gold); }
.gold-line { width: 60px; height: 4px; background: var(--gold); margin: 15px 0 25px; }
.gold-line-center { width: 60px; height: 4px; background: var(--gold); margin: 15px auto 25px; }

/* ===== STATS ===== */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; text-align: center; }
.stat-number { font-size: 48px; font-weight: 800; color: var(--gold); font-family: 'Poppins'; }
.stat-label { font-size: 16px; color: #fff; margin-top: 8px; }
@media (max-width: 768px) { .stat-number { font-size: 36px; } }

/* ===== FAQ ===== */
.faq-item { margin-bottom: 15px; padding: 20px; background: var(--bg-light); border-radius: 8px; border-left: 4px solid var(--gold); }
.faq-item h3 { font-size: 18px; margin-bottom: 8px; }
.faq-item p { color: #444; margin: 0; }

/* ===== CTA ===== */
.cta { text-align: center; }
.cta h2 { color: #fff; font-size: 32px; margin-bottom: 15px; }
.cta p { color: #ccc; font-size: 18px; margin-bottom: 25px; }
.cta-btns { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
.cta-note { color: #999; font-size: 14px; margin-top: 25px; }

/* ===== FOOTER ===== */
.site-footer { background: var(--primary); color: #fff; padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer-col h4 { color: var(--gold); font-size: 18px; margin-bottom: 20px; }
.footer-col p, .footer-col li { color: #ccc; font-size: 14px; line-height: 2; }
.footer-col ul { list-style: none; }
.footer-col a { color: #ccc; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 25px; text-align: center; color: #888; font-size: 13px; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed; bottom: 25px; right: 25px; z-index: 9999;
    background: #25D366; width: 60px; height: 60px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 15px rgba(37,211,102,0.4); transition: all .3s;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(37,211,102,0.6); }
.whatsapp-float svg { fill: #fff; width: 30px; height: 30px; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--light-green) 100%);
    color: #fff; text-align: center; padding: 60px 20px;
}
.page-hero h1 { color: #fff; font-size: 42px; margin-bottom: 15px; }
.page-hero p { color: #ccc; font-size: 18px; }
.hero-subtitle { color: var(--gold); font-size: 15px; text-transform: uppercase; letter-spacing: 3px; margin-bottom: 12px; }

/* ===== CONTENT ===== */
.content { padding: 80px 0; }
.content h2 { font-size: 32px; margin-bottom: 10px; }
.content h3 { font-size: 24px; margin-top: 30px; margin-bottom: 10px; }
.content p { font-size: 17px; line-height: 1.8; color: #444; margin-bottom: 15px; }
.content ul { margin: 15px 0; padding-left: 20px; }
.content li { color: #444; line-height: 2; }

/* ===== BORDER LEFT CARD ===== */
.bl-card { padding: 20px; border-left: 4px solid var(--gold); margin-bottom: 20px; }
.bl-card h4 { color: var(--primary); margin-bottom: 5px; }
.bl-card p { color: #444; margin: 0; }

/* ===== PROCESS STEPS ===== */
.step { display: flex; gap: 15px; margin-bottom: 25px; }
.step-num {
    min-width: 40px; height: 40px; background: var(--gold); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; color: #fff; font-weight: bold;
}
.step h4 { color: var(--primary); margin: 0 0 5px; }
.step p { color: var(--text-light); margin: 0; }

/* ===== UTILITIES ===== */
.text-center { text-align: center; }

/* ===== TEAM ===== */
.team-avatar {
    width: 120px; height: 120px; background: var(--primary); border-radius: 50%;
    margin: 0 auto 20px; display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 40px; font-weight: bold; font-family: 'Poppins';
}
.team-role { color: var(--gold); margin-bottom: 10px; }

/* ===== PROJECT CARDS ===== */
.project-placeholder {
    background: var(--bg-light); height: 250px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
    color: #999; font-size: 14px;
}

/* ===== BADGES ===== */
.badge { display: inline-block; padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 600; margin-bottom: 10px; }
.badge-gold { background: var(--gold); color: #fff; }
.badge-dark { background: var(--primary); color: #fff; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 50px; }
.contact-item { margin-bottom: 25px; }
.contact-item h4 { color: var(--primary); margin-bottom: 8px; }
.contact-item p { color: var(--text-light); }
.contact-map { margin-top: 40px; }
.map-iframe { width: 100%; height: 300px; border: 0; border-radius: 12px; }

/* ===== QUICK CONTACT ===== */
.quick-contact { background: var(--bg-light); padding: 25px; border-radius: 12px; margin-top: 30px; }
.quick-contact h4 { color: var(--primary); margin-bottom: 10px; }
.quick-contact p { margin-bottom: 8px; }

/* ===== BUTTONS EXTRA ===== */
.btn-whatsapp { background: #25D366; color: #fff; }
.btn-whatsapp:hover { background: #1da851; color: #fff; }

/* ===== FORMS ===== */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 5px; font-weight: 500; color: var(--primary); }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px 15px; border: 2px solid #e0e0e0; border-radius: 8px;
    font-family: 'Inter', sans-serif; font-size: 15px; transition: border-color .3s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); outline: none; }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ===== AREA TAGS ===== */
.area-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 15px; }
.area-tag { background: var(--bg-light); padding: 6px 14px; border-radius: 20px; font-size: 13px; color: var(--text); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .stat-number { font-size: 36px; }
    .section { padding: 40px 0; }
    .page-hero { padding: 40px 15px; }
    .page-hero h1 { font-size: 26px; }
    .page-hero p { font-size: 15px; }
    .section-title { font-size: 24px; }
    .section-subtitle { font-size: 14px; margin-bottom: 30px; }
    .content { padding: 40px 0; }
    .content h2 { font-size: 24px; }
    .content h3 { font-size: 20px; }
    .content p { font-size: 15px; }
    .grid { gap: 20px; }
    .grid-2, .grid-3 { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: 1fr 1fr; }
    .card { padding: 25px 18px; }
    .card:hover { transform: none; }
    .footer-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 30px; }
    .btn { padding: 12px 24px; font-size: 14px; width: 100%; text-align: center; }
    .hero-btns, .cta-btns { flex-direction: column; align-items: center; }
    .cta h2 { font-size: 24px; }
    .cta p { font-size: 15px; }
    .stats { grid-template-columns: 1fr 1fr; }
    .faq-item { padding: 15px; }
    .faq-item h3 { font-size: 16px; }
    .bl-card { padding: 15px; }
    .step { flex-direction: column; gap: 10px; }
    .whatsapp-float { width: 50px; height: 50px; bottom: 15px; right: 15px; }
    .whatsapp-float svg { width: 25px; height: 25px; }
}

/* ===== TABLES RESPONSIVE ===== */
@media (max-width: 768px) {
    table, .rate-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; font-size: 13px; }
    table th, table td, .rate-table th, .rate-table td { padding: 8px 10px; white-space: nowrap; }
}

/* ===== SMALL PHONES ===== */
@media (max-width: 480px) {
    .container { padding: 0 15px; }
    .hero h1 { font-size: 26px; }
    .hero p { font-size: 15px; }
    .hero { padding: 35px 15px; }
    .page-hero h1 { font-size: 22px; }
    .grid-4 { grid-template-columns: 1fr; }
    .stat-number { font-size: 30px; }
    .stat-label { font-size: 13px; }
    .footer-col h4 { font-size: 16px; }
}
