/* === GLOBAL === */
html, body {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', Arial, sans-serif;
    color: #555;
    background: #f4f4f4;
    -webkit-font-smoothing: antialiased;
}

* { box-sizing: border-box; }

a { color: #6ec1e4; text-decoration: none; }
a:hover { color: #6ec1e4; text-decoration: underline; }

/* === HEADER === */
.site-header {
    background: rgba(0,0,0,0.55);
    padding: 18px 30px;
    position: fixed;
    width: 100%;
    z-index: 999;
    top: 0;
    left: 0;
    transition: background .3s ease;
}

.site-header.scrolled {
    background: #1a1a2e;
}

.site-header .container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* logo svg in header */
.site-header .logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.site-header .logo-link:hover { text-decoration: none; }

/* main nav */
.site-header .main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 0;
}
.site-header .main-nav ul li {
    display: inline-block;
    margin-left: 24px;
}
.site-header .main-nav ul li a {
    color: #fff;
    font-size: 13px;
    text-transform: none;
    transition: color .2s;
}
.site-header .main-nav ul li a:hover,
.site-header .main-nav ul li a.active {
    color: #6ec1e4;
    text-decoration: none;
}

/* hamburger button */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: all .25s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === HERO BANNER === */
.hero-banner {
    background: url('../photos/hero-bg.webp') center center no-repeat;
    background-size: cover;
    padding: 130px 0 140px 0;
    text-align: center;
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 30, 0.52);
}

.hero-inner {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.logo-frame {
    display: inline-block;
    background: #000;
    padding: 14px 28px;
    margin: 0 auto 36px auto;
}
.logo-frame .logo-mark {
    color: #000;
    background: #fff;
    padding: 2px 8px;
    font-weight: 900;
    display: inline-block;
    font-size: 26px;
    line-height: 1;
}
.logo-frame .logo-sub {
    color: #fff;
    font-weight: 700;
    font-size: 21px;
    display: inline-block;
    margin-left: 10px;
    vertical-align: middle;
}

.hero-headline {
    color: #fff;
    font-size: 38px;
    font-weight: 700;
    margin: 0 0 14px 0;
    line-height: 1.25;
}
.hero-sub {
    color: rgba(255,255,255,.85);
    font-size: 16px;
    margin: 0 0 34px 0;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* === BUTTONS === */
.btn {
    display: inline-block;
    background: #fff;
    color: #555;
    padding: 12px 38px;
    border-radius: 4px;
    font-size: 14px;
    border: 1px solid #e5e5e5;
    font-weight: 400;
    transition: all .25s ease;
    -webkit-transition: all .25s ease;
    cursor: pointer;
    font-family: 'Open Sans', Arial, sans-serif;
}
.btn:hover {
    background: #f7f7f7 !important;
    text-decoration: none;
    color: #333;
}
.btn-cta {
    background: #6ec1e4;
    color: #fff;
    border-color: #6ec1e4;
    padding: 14px 52px;
    font-weight: 600;
    font-size: 15px;
}
.btn-cta:hover {
    background: #55afd6 !important;
    color: #fff;
    border-color: #55afd6;
}
.btn-ghost {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
}
.btn-ghost:hover { background: rgba(255,255,255,.1) !important; color: #fff; }

/* === PANELS === */
.panel {
    background: #fff;
    max-width: 900px;
    margin: 40px auto;
    padding: 45px 60px 35px 60px;
}

.panel.panel-notice {
    color: #a39b87;
    text-align: center;
    font-size: 13px;
    line-height: 1.8;
}
.panel.panel-notice h2 {
    color: #847b67;
    font-size: 16px;
    font-weight: 400;
    text-decoration: underline;
    margin-bottom: 28px;
}
.panel.panel-notice p { margin: 0 0 14px 0; }
.panel.panel-notice a { color: #a39b87; text-decoration: underline; }

/* panel image band */
.panel-image {
    max-width: 900px;
    margin: 0 auto 40px auto;
    padding: 0;
    overflow: hidden;
}
.panel-image img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 340px;
    object-fit: cover;
}

/* === SPLIT CARD === */
.split-card {
    background: #fff;
    max-width: 900px;
    margin: 0 auto 40px auto;
    padding: 55px 40px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
}
.split-card .col {
    flex: 1 1 50%;
    text-align: center;
    padding: 0 30px;
}
.split-card .col + .col {
    border-left: 1px solid #ececec;
}
.split-card h2,
.split-card h3 {
    color: #6ec1e4;
    font-weight: 400;
    font-size: 20px;
    margin: 0 0 18px 0;
    letter-spacing: .3px;
}
.split-card p, .split-card ul {
    font-size: 13px;
    line-height: 1.9;
    color: #7a7a7a;
    margin: 0 0 14px 0;
    text-align: left;
}
.split-card ul {
    padding-left: 18px;
}
.split-card ul li { margin-bottom: 6px; }
.split-card a { color: #6ec1e4; }
.split-card .fa {
    color: #6ec1e4;
    margin-right: 6px;
}

/* === LOCATION CARD === */
.location-card {
    background: #fff;
    max-width: 900px;
    margin: 0 auto 40px auto;
    padding: 70px 40px 80px 40px;
    text-align: center;
}
.location-card h2 {
    color: #6ec1e4;
    font-weight: 400;
    font-size: 22px;
    margin: 0 0 32px;
}
.location-card .line {
    margin: 8px 0;
    font-size: 13px;
    color: #777;
}
.location-card .line i {
    color: #9a9a9a;
    margin-right: 8px;
    width: 14px;
    text-align: center;
}
.location-card .line a { color: #6ec1e4; }

/* === DUAL CARDS === */
.dual-cards {
    max-width: 900px;
    margin: 0 auto 40px auto;
    display: flex;
    gap: 28px;
}
.dual-cards .card {
    flex: 1 1 50%;
    background: #fff;
    padding: 0 0 30px 0;
    text-align: center;
}
.dual-cards .card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}
.dual-cards .card h3 {
    color: #6ec1e4;
    font-size: 20px;
    margin: 28px 0 12px;
    font-weight: 400;
}
.dual-cards .card p {
    font-size: 13px;
    color: #7a7a7a;
    line-height: 1.8;
    padding: 0 24px;
    margin: 0 0 8px;
}
.dual-cards .card .price-badge {
    display: inline-block;
    background: #6ec1e4;
    color: #fff;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin: 6px 0 14px;
}
.dual-cards .card .btn { margin-top: 18px; }

/* === FAQ SECTION === */
.faq-section {
    background: #fff;
    max-width: 900px;
    margin: 0 auto 40px auto;
    padding: 50px 60px;
}
.faq-section h2 {
    color: #6ec1e4;
    font-weight: 400;
    font-size: 22px;
    text-align: center;
    margin: 0 0 36px;
}
.faq-item {
    border-bottom: 1px solid #ececec;
    padding: 18px 0;
}
.faq-item:last-child { border-bottom: 0; }
.faq-question {
    font-size: 14px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.faq-question i { color: #6ec1e4; font-size: 12px; transition: transform .2s; }
.faq-question.open i { transform: rotate(180deg); }
.faq-answer {
    font-size: 13px;
    color: #7a7a7a;
    line-height: 1.85;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease, padding .3s ease;
}
.faq-answer.open {
    max-height: 300px;
    padding-top: 12px;
}

/* === PRICING PAGE === */
.pricing-section {
    max-width: 1060px;
    margin: 60px auto;
    padding: 0 20px;
}
.pricing-section h1 {
    text-align: center;
    color: #555;
    font-weight: 300;
    font-size: 32px;
    margin: 0 0 10px;
}
.pricing-section .subtitle {
    text-align: center;
    color: #9a9a9a;
    font-size: 14px;
    margin: 0 0 50px;
}
.pricing-grid {
    display: flex;
    gap: 24px;
    align-items: stretch;
}
.pricing-card {
    flex: 1 1 0;
    background: #fff;
    padding: 40px 30px 36px 30px;
    text-align: center;
    position: relative;
}
.pricing-card.featured {
    border-top: 3px solid #6ec1e4;
    box-shadow: 0 4px 24px rgba(110,193,228,.15);
}
.pricing-card .badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #6ec1e4;
    color: #fff;
    font-size: 11px;
    padding: 3px 14px;
    border-radius: 20px;
    font-weight: 600;
    white-space: nowrap;
}
.pricing-card h3 {
    color: #555;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 6px;
}
.pricing-card .tagline {
    color: #aaa;
    font-size: 12px;
    margin: 0 0 24px;
}
.pricing-card .price {
    font-size: 42px;
    font-weight: 700;
    color: #6ec1e4;
    line-height: 1;
    margin: 0 0 4px;
}
.pricing-card .price sup {
    font-size: 20px;
    vertical-align: super;
}
.pricing-card .price-note {
    color: #aaa;
    font-size: 12px;
    margin: 0 0 24px;
}
.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    text-align: left;
    font-size: 13px;
    color: #7a7a7a;
    line-height: 1.9;
}
.pricing-card ul li { padding: 5px 0; border-bottom: 1px solid #f0f0f0; }
.pricing-card ul li i { color: #6ec1e4; margin-right: 8px; }
.pricing-card ul li.no i { color: #ccc; }
.pricing-card ul li.no { color: #ccc; }

/* FAQ on pricing page */
.pricing-faq {
    max-width: 900px;
    margin: 0 auto 60px auto;
    background: #fff;
    padding: 50px 60px;
}
.pricing-faq h2 {
    color: #6ec1e4;
    font-weight: 400;
    font-size: 22px;
    text-align: center;
    margin: 0 0 36px;
}

/* === CTA BAND === */
.cta-band {
    background: linear-gradient(90deg, #7fc7bf 0%, #6d7fb5 100%);
    color: #fff;
    text-align: center;
    padding: 70px 20px 80px 20px;
}
.cta-band h2 {
    color: #fff;
    font-weight: 300;
    font-size: 28px;
    margin: 0 0 28px;
}
.cta-band .btn { margin: 0 6px; }

/* === PAGE HERO (sub pages) === */
.page-hero {
    background: linear-gradient(90deg, #7fc7bf 0%, #6d7fb5 100%);
    padding: 120px 20px 60px 20px;
    text-align: center;
}
.page-hero h1 {
    color: #fff;
    font-size: 32px;
    font-weight: 300;
    margin: 0 0 10px;
}
.page-hero p {
    color: rgba(255,255,255,.85);
    font-size: 15px;
    margin: 0;
}

/* === CONTACT PAGE === */
.contact-wrap {
    max-width: 900px;
    margin: 40px auto;
    display: flex;
    gap: 28px;
    align-items: flex-start;
}
.contact-form-box {
    flex: 1 1 58%;
    background: #fff;
    padding: 40px 40px 36px 40px;
}
.contact-form-box h2 {
    color: #6ec1e4;
    font-weight: 400;
    font-size: 20px;
    margin: 0 0 24px;
}
.contact-info-box {
    flex: 1 1 38%;
    background: #fff;
    padding: 40px 30px;
    font-size: 13px;
    color: #777;
    line-height: 2;
}
.contact-info-box h3 {
    color: #6ec1e4;
    font-weight: 400;
    font-size: 16px;
    margin: 0 0 16px;
}
.contact-info-box .ci-line { margin-bottom: 10px; }
.contact-info-box .ci-line i {
    color: #9a9a9a;
    margin-right: 8px;
    width: 14px;
    text-align: center;
}

/* form styles */
.form-group {
    margin-bottom: 18px;
}
.form-group label {
    display: block;
    font-size: 12px;
    color: #999;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    border: 1px solid #ddd;
    padding: 10px 14px;
    font-size: 13px;
    font-family: 'Open Sans', Arial, sans-serif;
    color: #555;
    outline: none;
    transition: border-color .2s;
    background: #fafafa;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #6ec1e4;
    background: #fff;
}
.form-group textarea { resize: vertical; min-height: 110px; }

/* === TEXT CONTENT PAGES === */
.text-page {
    max-width: 860px;
    margin: 50px auto 60px auto;
    background: #fff;
    padding: 50px 60px 50px 60px;
}
.text-page h1 {
    color: #6ec1e4;
    font-weight: 400;
    font-size: 26px;
    margin: 0 0 28px;
    border-bottom: 1px solid #ececec;
    padding-bottom: 18px;
}
.text-page h2 {
    color: #555;
    font-size: 17px;
    font-weight: 600;
    margin: 30px 0 12px;
}
.text-page h3 {
    color: #777;
    font-size: 14px;
    font-weight: 600;
    margin: 22px 0 8px;
}
.text-page p {
    font-size: 13px;
    line-height: 1.9;
    color: #666;
    margin: 0 0 14px;
}
.text-page ul, .text-page ol {
    font-size: 13px;
    color: #666;
    line-height: 1.9;
    padding-left: 22px;
    margin: 0 0 14px;
}
.text-page ul li, .text-page ol li { margin-bottom: 6px; }
.text-page a { color: #6ec1e4; }

/* about page additions */
.about-section {
    max-width: 900px;
    margin: 40px auto;
    background: #fff;
    padding: 55px 60px;
}
.about-section h2 {
    color: #6ec1e4;
    font-weight: 400;
    font-size: 22px;
    margin: 0 0 22px;
}
.about-section p {
    font-size: 13px;
    color: #777;
    line-height: 1.9;
    margin: 0 0 16px;
}
.about-values {
    display: flex;
    gap: 24px;
    margin-top: 32px;
}
.about-value {
    flex: 1 1 0;
    text-align: center;
    padding: 24px 16px;
    border: 1px solid #ececec;
}
.about-value i {
    font-size: 28px;
    color: #6ec1e4;
    margin-bottom: 12px;
}
.about-value h4 {
    color: #555;
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 8px;
}
.about-value p {
    font-size: 12px;
    color: #9a9a9a;
    margin: 0;
}
.about-team-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    margin: 28px 0;
}

/* === FOOTER === */
.site-footer {
    background: #1a1a2e;
    color: #888;
    padding: 50px 20px 28px 20px;
}
.footer-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 32px;
    border-bottom: 1px solid #2a2a3e;
}
.footer-col h4 {
    color: #ccc;
    font-size: 13px;
    font-weight: 600;
    margin: 0 0 14px;
    text-transform: uppercase;
    letter-spacing: .6px;
}
.footer-col p, .footer-col address {
    font-size: 12px;
    color: #777;
    line-height: 1.9;
    font-style: normal;
    margin: 0;
}
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-col ul li a {
    color: #777;
    font-size: 12px;
    transition: color .2s;
}
.footer-col ul li a:hover { color: #6ec1e4; text-decoration: none; }
.footer-col ul li { margin-bottom: 6px; }
.footer-social { display: flex; gap: 12px; margin-top: 14px; }
.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #2a2a3e;
    color: #888;
    font-size: 13px;
    transition: all .2s;
}
.footer-social a:hover { background: #6ec1e4; color: #fff; text-decoration: none; }
.footer-copy {
    text-align: center;
    font-size: 11px;
    color: #666;
    padding-top: 20px;
    max-width: 900px;
    margin: 0 auto;
}

/* === COOKIE BANNER === */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a2e;
    color: #ccc;
    padding: 18px 30px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: 13px;
    transform: translateY(100%);
    transition: transform .4s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner p { margin: 0; line-height: 1.6; }
.cookie-banner a { color: #6ec1e4; }
.cookie-buttons { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-buttons .btn {
    padding: 8px 22px;
    font-size: 12px;
}
.cookie-accept {
    background: #6ec1e4;
    color: #fff;
    border-color: #6ec1e4;
}
.cookie-accept:hover { background: #55afd6 !important; }
.cookie-decline {
    background: transparent;
    border-color: #555;
    color: #aaa;
}

/* send.php page */
.send-result {
    max-width: 600px;
    margin: 120px auto 60px;
    background: #fff;
    padding: 50px 50px;
    text-align: center;
}
.send-result i { font-size: 48px; color: #6ec1e4; margin-bottom: 20px; }
.send-result h1 { color: #555; font-weight: 300; font-size: 28px; margin: 0 0 14px; }
.send-result p { color: #888; font-size: 14px; line-height: 1.8; }

/* === RESPONSIVE === */
@media (max-width: 960px) {
    .panel, .split-card, .location-card, .dual-cards,
    .panel-image, .faq-section, .text-page, .about-section,
    .pricing-faq {
        max-width: 92%;
    }
    .pricing-section { max-width: 92%; }
}

@media (max-width: 768px) {
    .site-header .main-nav { display: none; position: absolute; top: 60px; left: 0; right: 0; background: #1a1a2e; padding: 16px 0; }
    .site-header .main-nav.open { display: block; }
    .site-header .main-nav ul { flex-direction: column; gap: 0; }
    .site-header .main-nav ul li { margin: 0; display: block; }
    .site-header .main-nav ul li a { display: block; padding: 10px 24px; font-size: 14px; }
    .hamburger { display: flex; }
    .split-card { flex-direction: column; padding: 35px 20px; }
    .split-card .col + .col { border-left: 0; border-top: 1px solid #ececec; padding-top: 25px; margin-top: 25px; }
    .dual-cards { flex-direction: column; gap: 20px; }
    .hero-banner { padding: 100px 0 90px 0; }
    .hero-headline { font-size: 26px; }
    .cta-band h2 { font-size: 20px; }
    .cta-band .btn { display: block; margin: 8px auto; max-width: 220px; }
    .contact-wrap { flex-direction: column; max-width: 92%; }
    .footer-inner { flex-direction: column; gap: 28px; }
    .pricing-grid { flex-direction: column; }
    .about-values { flex-direction: column; gap: 14px; }
    .cookie-banner { flex-direction: column; align-items: flex-start; }
    .faq-section { padding: 40px 24px; }
    .pricing-faq { padding: 40px 24px; }
    .text-page { padding: 36px 24px; }
    .about-section { padding: 36px 24px; }
}

@media (max-width: 480px) {
    .panel { padding: 30px 20px; }
    .location-card { padding: 40px 20px 45px 20px; }
    .btn-cta { padding: 12px 32px; }
    .logo-frame .logo-sub { font-size: 16px; }
    .hero-headline { font-size: 22px; }
}
