/* ===============================
   THE POLYGON — BRAND IDENTITY
   Colors + Typography
   =============================== */

:root{
  /* Brand Colors */
        --tp-offwhite: #F5F9F8;   /* Light surface */
        --tp-orange:   #1F5A50;   /* Primary / CTA */
        --tp-charcoal: #2C4A45;   /* Text / Dark backgrounds */
        --tp-warmgray: #9B8F89;   /* Secondary UI */
        --tp-deep:     #1A3A35;   /* Deep accent */

  /* Optional helpers (derived usage) */
  --tp-text: var(--tp-charcoal);
    --tp-bg: var(--tp-offwhite);
        --tp-muted: #6B8A82;
        --tp-border: rgba(44,74,69,.12);
  
  /* Typography */
  --tp-font-heading: "ANTONIA", "Georgia", "Times New Roman", serif;
  --tp-font-body: "ACID GROTESK", "Inter", "Arial", sans-serif;
}

/* ========================================
   THE POLYGON - Main Stylesheet
   ======================================== */

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    background: linear-gradient(180deg, #F5F9F8 0%, #FAFBFB 50%, #FFFFFF 100%);
    color: var(--tp-text);
    font-family: var(--tp-font-body);
    line-height: 1.7;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Headings */
h1, h2, h3, h4, h5, h6,
.section-title, .hero-title{
  font-family: var(--tp-font-heading);
  color: var(--tp-text);
  letter-spacing: .2px;
}

/* Links */
a{
  color: var(--tp-text);
  text-decoration: none;
}
a:hover{
  color: var(--tp-orange);
}

/* ========================================
   HEADER & NAVIGATION STYLES
   ======================================== */

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--tp-bg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: transform 0.3s ease;
}

header.hide {
    transform: translateY(-100%);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.navbar-logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--tp-text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--tp-font-heading);
}

.navbar-logo:hover {
    color: var(--tp-orange);
    transition: color 0.3s ease;
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.navbar-menu a {
    color: var(--tp-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    font-family: var(--tp-font-body);
}

.navbar-menu a:hover {
    color: var(--tp-orange);
}

.navbar-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--tp-orange);
    transition: width 0.3s ease;
}

.navbar-menu a:hover::after {
    width: 100%;
}

/* Hamburger Menu Toggle */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--tp-text);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Overlay */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.menu-overlay.active {
    display: block;
}

/* Main Content Styles */
main {
    margin-top: 70px;
    /* Main content styles will be added here */
}

section {
    padding: 70px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 28px;
    color: var(--tp-text);
    margin-bottom: 10px;
    font-family: var(--tp-font-heading);
}

.section-header p {
    color: var(--tp-muted);
    font-size: 16px;
    font-family: var(--tp-font-body);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background-image: url('../assets/Cover photo.jpg');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 58, 53, 0.65);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 90px 24px;
    max-width: 760px;
    margin: 0 auto;
    color: #FFFFFF;
    text-align: center;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    font-family: var(--tp-font-heading);
    color: #FFFFFF; 
}

.hero-description {
    font-size: 18px;
    color: var(--tp-offwhite);
    margin-bottom: 20px;
    font-family: var(--tp-font-body);
}

.hero-details {
    font-size: 17px;
    color: var(--tp-offwhite);
    margin-bottom: 28px;
    display: grid;
    gap: 8px;
    font-family: var(--tp-font-body);
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-cta-btn {
    display: inline-flex !important;
}

.hero-cta-whatsapp {
    display: none !important;
}

/* ========================================
   PROJECTS
   ======================================== */

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 0 24px;
}

.project-card {
    background: rgba(245,249,248,.95);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 20px;
    display: grid;
    gap: 16px;
    text-align: center;
    justify-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--tp-border);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.project-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image {
    transform: scale(1.05);
}

.project-location {
    display: inline-block;
    background: var(--tp-orange);
    color: var(--tp-offwhite);
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    font-family: var(--tp-font-body);
    margin: -8px 0 8px 0;
}

.project-location i {
    font-size: 12px;
    margin-left: 4px;
}

.project-card h3 {
    font-size: 20px;
    color: var(--tp-text);
    font-family: var(--tp-font-heading);
}

.project-meta {
    color: var(--tp-muted);
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid var(--tp-border);
    font-family: var(--tp-font-body);
}

.project-description {
    color: var(--tp-muted);
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
    display: block;
    padding: 8px 0;
    font-family: var(--tp-font-body);
}

.project-detail {
    color: var(--tp-muted);
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
    padding: 6px 0;
    font-family: var(--tp-font-body);
}

.project-detail strong {
    color: var(--tp-text);
    font-weight: 600;
}

.project-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    margin-top: 4px;
}

.project-actions .btn-primary,
.project-actions .btn-outline {
    flex: 1;
    min-width: 140px;
}

/* ========================================
   WHY CHOOSE
   ======================================== */

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    padding: 0 24px;
}

.why-item {
    background: rgba(245,249,248,.95);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 28px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--tp-border);
}

.why-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.why-icon {
    font-size: 48px;
    color: var(--tp-orange);
    margin-bottom: 16px;
}

.why-item h3 {
    color: var(--tp-text);
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 12px;
    font-family: var(--tp-font-heading);
}

.why-item p {
    color: var(--tp-muted);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    font-family: var(--tp-font-body);
}

/* ========================================
   GALLERY
   ======================================== */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
    padding: 0 24px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 4/3;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ========================================
   LIGHTBOX
   ======================================== */

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #FFFFFF;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.lightbox-close:hover {
    color: var(--tp-orange);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #FFFFFF;
    font-size: 30px;
    font-weight: bold;
    padding: 16px;
    cursor: pointer;
    user-select: none;
    transition: 0.3s;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--tp-orange);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* ========================================
   CONTACT
   ======================================== */

.contact-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 24px;
}

.contact-form {
    background: rgba(245,249,248,.95);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 32px;
    display: grid;
    gap: 20px;
}

.form-group {
    display: grid;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--tp-text);
    font-size: 14px;
    font-family: var(--tp-font-body);
}

.form-group input,
.form-group select {
    padding: 14px 16px;
    border: 1px solid var(--tp-border);
    border-radius: 12px;
    font-family: var(--tp-font-body);
    font-size: 14px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: #ffffff;
    color: var(--tp-text);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: rgba(31,90,80,.8);
    box-shadow: 0 0 0 4px rgba(31,90,80,.25);
}

.form-group input::placeholder {
    color: rgba(44,74,69,.45);
}

.form-group select {
    cursor: pointer;
    background-color: #FFFFFF;
}

.btn-submit {
    margin-top: 8px;
    width: 100%;
}

/* ========================================
   FOOTER
   ======================================== */

footer {
    background: var(--tp-charcoal);
    color: var(--tp-offwhite);
    padding: 24px;
    text-align: center;
}

.footer-content {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-content a {
    color: var(--tp-offwhite);
    text-decoration: none;
    font-weight: 600;
    font-family: var(--tp-font-body);
}

.footer-content a:hover {
    color: var(--tp-orange);
}

/* ========================================
   BUTTONS
   ======================================== */

.btn-primary, .btn, button {
    background: var(--tp-orange);
    color: var(--tp-offwhite);
    border: 1px solid transparent;
    border-radius: 12px;
    padding: 14px 28px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: transform .15s ease, opacity .15s ease, box-shadow .15s ease;
    font-size: 14px;
    font-family: var(--tp-font-body);
}

.btn-primary:hover, .btn:hover, button:hover {
    opacity: .95;
    transform: translateY(-1px);
    box-shadow: 0 10px 25px rgba(0,0,0,.12);
}

.btn-primary:active, .btn:active, button:active {
    transform: translateY(0);
}

.btn-outline, .btn-secondary {
    background: transparent;
    color: var(--tp-text);
    border: 1px solid var(--tp-border);
    border-radius: 12px;
    padding: 12px 24px;
    font-weight: 600;
    cursor: pointer;
    transition: transform .15s ease, border-color .15s ease, color .15s ease;
    font-size: 14px;
    font-family: var(--tp-font-body);
}

.btn-outline:hover, .btn-secondary:hover {
    border-color: rgba(31,90,80,.8);
    color: var(--tp-orange);
    transform: translateY(-1px);
}

.hero-cta-whatsapp {
    display: none;
}

.btn-whatsapp i {
    font-size: 18px;
}

.btn-whatsapp:hover,
.btn-primary.btn-whatsapp:hover {
    color: var(--tp-offwhite) !important;
}

/* ========================================
   POPUP MODAL
   ======================================== */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: none;
    z-index: 1001;
}

.modal-overlay.active {
    display: block;
}

.modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1002;
    padding: 24px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--tp-bg);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 28px;
    width: 100%;
    max-width: 520px;
    position: relative;
}

.modal-header {
    text-align: center;
    margin-bottom: 24px;
}

.modal-content h2 {
    margin-bottom: 8px;
    color: var(--tp-text);
    font-size: 24px;
    font-family: var(--tp-font-heading);
}

.modal-close {
    position: absolute;
    top: 14px;
    left: 14px;
    background: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--tp-muted);
}

.modal-form {
    display: grid;
    gap: 12px;
    text-align: right;
}

.modal-form label {
    font-weight: 600;
    color: var(--tp-text);
    display: block;
    margin-bottom: 4px;
    font-family: var(--tp-font-body);
}

.modal-form input,
.modal-form select,
.modal-form textarea {
    padding: 12px 14px;
    border: 1px solid var(--tp-border);
    border-radius: 12px;
    font-family: var(--tp-font-body);
    width: 100%;
    background: #ffffff;
    color: var(--tp-text);
}

.modal-form input:focus,
.modal-form select:focus,
.modal-form textarea:focus {
    outline: none;
    border-color: rgba(31,90,80,.8);
    box-shadow: 0 0 0 4px rgba(31,90,80,.25);
}

.modal-form input::placeholder,
.modal-form textarea::placeholder {
    color: rgba(44,74,69,.45);
}

.form-terms {
    font-family: var(--tp-font-body);
    font-size: 13px;
    color: var(--tp-muted);
    text-align: center;
    margin-top: 12px;
    line-height: 1.6;
}

.form-terms a {
    color: var(--tp-text);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.form-terms a:hover {
    color: var(--tp-orange);
}

.modal-project-name {
    margin-bottom: 12px;
    color: var(--tp-muted);
    font-family: var(--tp-font-body);
}

.modal-subtitle {
    color: var(--tp-muted);
    font-size: 14px;
    margin-top: 4px;
    font-family: var(--tp-font-body);
}

body.modal-open {
    overflow: hidden;
}

/* ========================================
   FOOTER
   ======================================== */

footer {
    background-color: var(--tp-charcoal);
    color: var(--tp-offwhite);
    padding: 60px 0 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-about h3,
.footer-links h3,
.footer-contact h3 {
    font-family: var(--tp-font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--tp-orange);
    margin-bottom: 20px;
}

.footer-about p {
    font-family: var(--tp-font-body);
    line-height: 1.8;
    color: var(--tp-offwhite);
    opacity: 0.9;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li,
.footer-contact ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    font-family: var(--tp-font-body);
    color: var(--tp-offwhite);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--tp-orange);
}

.footer-contact ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--tp-font-body);
    color: var(--tp-offwhite);
}

.footer-contact ul li i {
    color: var(--tp-orange);
    font-size: 18px;
}

.footer-contact ul li a {
    color: var(--tp-offwhite);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact ul li a:hover {
    color: var(--tp-orange);
}

.footer-bottom {
    background-color: rgba(26,58,53,.95);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-family: var(--tp-font-body);
    color: var(--tp-offwhite);
    opacity: 0.8;
    margin: 0;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding: 80px 20px;
        text-align: center;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-description,
    .hero-details {
        font-size: 16px;
    }

    .hero-cta-btn {
        display: none !important;
    }

    .hero-cta-whatsapp {
        display: inline-flex !important;
    }

    .navbar-menu {
        position: fixed;
        left: 0;
        top: 60px;
        width: 100%;
        flex-direction: column;
        background-color: var(--tp-bg);
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

    .navbar-menu.active {
        max-height: 300px;
    }

    .navbar-menu a {
        padding: 16px 24px;
        border-bottom: 1px solid var(--tp-border);
        width: 100%;
    }

    .navbar-menu a::after {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    main {
        margin-top: 60px;
    }

    /* Footer Responsive */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-actions {
        width: 100%;
    }

    .btn-primary {
        width: 100%;
        justify-content: center;
    }

    .navbar {
        padding: 12px 16px;
    }

    .navbar-logo {
        font-size: 20px;
    }

    .navbar-menu a {
        padding: 14px 16px;
    }

    main {
        margin-top: 56px;
    }

    /* Footer Mobile */
    footer {
        padding: 40px 0 0;
    }

    .footer-container {
        padding: 0 16px;
        gap: 30px;
    }
}

/* ========================================
   POLICY PAGES (Privacy, Disclaimer)
   ======================================== */

.policy-section {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 24px;
}

.policy-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    border-bottom: 2px solid var(--tp-text);
    padding-bottom: 20px;
}

.policy-header h1 {
    font-family: var(--tp-font-heading);
    font-size: 36px;
    color: var(--tp-text);
    margin: 0;
}

.lang-toggle {
    background-color: var(--tp-orange);
    color: var(--tp-offwhite);
    border: none;
    padding: 10px 20px;
    border-radius: 12px;
    font-family: var(--tp-font-body);
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.15s ease;
}

.lang-toggle:hover {
    opacity: .95;
    transform: translateY(-1px);
}

.policy-content {
    font-family: var(--tp-font-body);
    line-height: 1.8;
    color: var(--tp-text);
    text-align: right;
}

#english-content {
    font-family: var(--tp-font-body) !important;
    text-align: left !important;
    direction: ltr !important;
}

#english-content h2 {
    text-align: left !important;
    font-family: var(--tp-font-heading) !important;
}

#english-content p {
    text-align: left !important;
    font-family: var(--tp-font-body) !important;
}

#english-content ul {
    text-align: left !important;
}

#english-content li {
    text-align: left !important;
    font-family: var(--tp-font-body) !important;
}

.policy-content h2 {
    color: var(--tp-text);
    font-size: 22px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
    font-family: var(--tp-font-heading);
}

/* ========================================
   CONTACT INFO PAGE
   ======================================== */

.contact-info-section {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 24px;
}

.contact-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    border-bottom: 2px solid var(--tp-text);
    padding-bottom: 20px;
}

.contact-header h1 {
    font-family: var(--tp-font-heading);
    font-size: 36px;
    color: var(--tp-text);
    margin: 0;
}

.contact-content {
    font-family: var(--tp-font-body);
    line-height: 1.8;
    color: var(--tp-text);
    text-align: right;
}

.contact-intro {
    background-color: var(--tp-bg);
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 40px;
    border-right: 4px solid var(--tp-orange);
}

.contact-intro p {
    font-size: 16px;
    color: var(--tp-muted);
    margin: 0;
    font-family: var(--tp-font-body);
}

.contact-methods {
    margin: 40px 0;
}

.contact-methods h2 {
    color: var(--tp-text);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    font-family: var(--tp-font-heading);
}

.contact-item {
    display: flex;
    gap: 24px;
    margin-bottom: 30px;
    padding: 20px;
    background-color: rgba(245,249,248,.95);
    border: 1px solid var(--tp-border);
    border-radius: 12px;
    transition: box-shadow 0.3s ease;
}

.contact-item:hover {
    box-shadow: 0 5px 20px rgba(37, 36, 34, 0.1);
}

.contact-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: var(--tp-text);
    color: var(--tp-offwhite);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.contact-details {
    flex: 1;
}

.contact-details h3 {
    color: var(--tp-text);
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 10px 0;
    font-family: var(--tp-font-heading);
}

.contact-details p {
    color: var(--tp-muted);
    margin: 5px 0;
    font-size: 16px;
    font-family: var(--tp-font-body);
}

.contact-details a {
    color: var(--tp-text);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--tp-orange);
}

.contact-subtitle {
    font-size: 14px !important;
    color: var(--tp-muted) !important;
    font-style: italic;
}

.contact-message {
    background-color: var(--tp-bg);
    padding: 30px;
    border-radius: 12px;
    margin: 40px 0;
    border-left: 4px solid var(--tp-orange);
}

.contact-message h2 {
    color: var(--tp-text);
    font-size: 22px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 20px;
    font-family: var(--tp-font-heading);
}

.contact-message ul {
    list-style-position: right;
    padding-right: 24px;
    margin: 0;
}

.contact-message li {
    color: var(--tp-muted);
    margin-bottom: 12px;
    font-size: 16px;
    font-family: var(--tp-font-body);
}

@media (max-width: 768px) {
    .contact-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .contact-header h1 {
        font-size: 28px;
    }

    .contact-info-section {
        margin: 40px auto;
        padding: 0 16px;
    }

    .contact-item {
        flex-direction: column;
        gap: 16px;
    }

    .contact-icon {
        margin: 0 auto;
    }

    .contact-details {
        text-align: center;
    }

    .contact-details a {
        display: inline-block;
        margin-top: 10px;
    }

    .contact-message {
        padding: 20px;
    }

    .contact-message h2 {
        font-size: 20px;
    }
}

.policy-content p {
    color: var(--tp-muted);
    margin-bottom: 15px;
    font-size: 16px;
    font-family: var(--tp-font-body);
}

.policy-content ul {
    margin: 15px 0;
    padding-right: 24px;
    list-style-position: right;
}

.policy-content ul li {
    color: var(--tp-muted);
    margin-bottom: 10px;
    font-size: 16px;
    font-family: var(--tp-font-body);
}

@media (max-width: 768px) {
    .policy-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .policy-header h1 {
        font-size: 28px;
    }

    .policy-section {
        margin: 40px auto;
        padding: 0 16px;
    }

    .policy-content h2 {
        font-size: 20px;
    }

    .policy-content p,
    .policy-content ul li {
        font-size: 15px;
    }
}

/* ========================================
   THANK YOU PAGE
   ======================================== */

.thank-you-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
    background: linear-gradient(135deg, var(--tp-bg) 0%, var(--tp-offwhite) 100%);
}

.thank-you-container {
    max-width: 700px;
    width: 100%;
    background: var(--tp-bg);
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    background-color: var(--tp-text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 48px;
    color: var(--tp-offwhite);
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.thank-you-container h1 {
    font-family: var(--tp-font-heading);
    font-size: 42px;
    color: var(--tp-text);
    margin: 0 0 15px 0;
    font-weight: 700;
}

.thank-you-subtitle {
    font-family: var(--tp-font-body);
    font-size: 18px;
    color: var(--tp-orange);
    margin: 0 0 30px 0;
    font-weight: 600;
}

.thank-you-message {
    background-color: rgba(245,249,248,.88);
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 40px;
    border-right: 4px solid var(--tp-orange);
}

.thank-you-message p {
    font-family: var(--tp-font-body);
    font-size: 16px;
    color: var(--tp-muted);
    line-height: 1.8;
    margin: 15px 0;
    text-align: right;
}

.thank-you-message p:first-child {
    margin-top: 0;
}

.thank-you-message p:last-child {
    margin-bottom: 0;
}

.next-steps {
    text-align: right;
    margin: 40px 0;
}

.next-steps h2 {
    font-family: var(--tp-font-heading);
    font-size: 24px;
    color: var(--tp-text);
    margin-bottom: 30px;
    font-weight: 700;
}

.step {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    text-align: right;
    flex-direction: row-reverse;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--tp-orange);
    color: var(--tp-offwhite);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
}

.step-content h3 {
    font-family: var(--tp-font-heading);
    font-size: 18px;
    color: var(--tp-text);
    margin: 0 0 8px 0;
    font-weight: 700;
}

.step-content p {
    font-family: var(--tp-font-body);
    font-size: 14px;
    color: var(--tp-muted);
    margin: 0;
    line-height: 1.6;
}

.thank-you-contact {
    background-color: rgba(245,249,248,.82);
    padding: 30px;
    border-radius: 12px;
    margin: 40px 0;
}

.thank-you-contact h2 {
    font-family: var(--tp-font-heading);
    font-size: 22px;
    color: var(--tp-text);
    margin: 0 0 15px 0;
    font-weight: 700;
}

.thank-you-contact p {
    font-family: var(--tp-font-body);
    font-size: 16px;
    color: var(--tp-muted);
    margin: 0 0 24px 0;
    line-height: 1.6;
}

.quick-contact {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-family: var(--tp-font-body);
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.contact-btn.phone {
    background-color: var(--tp-text);
    color: var(--tp-offwhite);
}

.contact-btn.phone:hover {
    background-color: var(--tp-orange);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(31,90,80,.12);
}

.contact-btn.whatsapp {
    background-color: #25D366;
    color: var(--tp-offwhite);
}

.contact-btn.whatsapp:hover {
    background-color: #1FA852;
    color: var(--tp-offwhite);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.action-buttons {
    display: flex;
    gap: 16px;
    margin: 40px 0;
    justify-content: center;
    flex-wrap: wrap;
}

.action-buttons .btn-primary,
.action-buttons .btn-secondary {
    padding: 14px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-family: var(--tp-font-body);
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
}

.action-buttons .btn-primary {
    background-color: var(--tp-orange);
    color: var(--tp-offwhite);
    border: 1px solid transparent;
}

.action-buttons .btn-primary:hover {
    opacity: .95;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(31,90,80,.12);
}

.action-buttons .btn-secondary {
    background-color: transparent;
    color: var(--tp-text);
    border: 2px solid var(--tp-border);
}

.action-buttons .btn-secondary:hover {
    border-color: var(--tp-orange);
    color: var(--tp-orange);
    transform: translateY(-2px);
}

.thank-you-note {
    background-color: rgba(245,249,248,.95);
    padding: 16px;
    border-radius: 12px;
    border-right: 3px solid var(--tp-orange);
    margin-top: 30px;
}

.thank-you-note p {
    font-family: var(--tp-font-body);
    font-size: 14px;
    color: var(--tp-muted);
    margin: 0;
    line-height: 1.6;
    text-align: right;
}

@media (max-width: 768px) {
    .thank-you-container {
        padding: 30px 20px;
    }

    .thank-you-container h1 {
        font-size: 32px;
    }

    .thank-you-subtitle {
        font-size: 16px;
    }

    .next-steps h2,
    .thank-you-contact h2 {
        font-size: 20px;
    }

    .step {
        margin-bottom: 20px;
    }

    .action-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .quick-contact {
        flex-direction: column;
        gap: 12px;
    }

    .contact-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   COOKIE CONSENT BANNER
   ======================================== */

.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--tp-offwhite);
    border: 2px solid var(--tp-orange);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(37, 36, 34, 0.2);
    max-width: 420px;
    padding: 24px;
    z-index: 9999;
    animation: slideInUp 0.5s ease;
    font-family: var(--tp-font-body);
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-banner.hide {
    animation: slideOutDown 0.4s ease forwards;
}

@keyframes slideInUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: right;
}

.cookie-icon {
    font-size: 32px;
    color: var(--tp-orange);
    text-align: center;
}

.cookie-text p {
    font-size: 14px;
    color: var(--tp-text);
    line-height: 1.6;
    margin: 0;
}

.cookie-links {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    align-items: center;
}

.cookie-links span {
    color: var(--tp-muted);
}

.cookie-links a {
    color: var(--tp-orange);
    font-weight: 600;
}

.cookie-links a:hover {
    text-decoration: underline;
}

@keyframes slideOutDown {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(100px);
        opacity: 0;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookie-banner {
        bottom: 0;
        right: 0;
        left: 0;
        max-width: 100%;
        border-radius: 16px 16px 0 0;
        border-bottom: none;
        padding: 20px;
    }

    .cookie-text p {
        font-size: 13px;
    }

    .cookie-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}
