/* ================= VARIABLES ================= */
:root {
    --gold: #c5a059;
    --navy: #002147;
    --dark-bg: #0a0e14;
    --light-bg: #fdfcfb;
    --white: #ffffff;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* ================= RESET & BASICS ================= */
* { box-sizing: border-box; scroll-behavior: smooth; }
body { margin: 0; font-family: 'Poppins', sans-serif; line-height: 1.8; transition: var(--transition); }
body.light-mode { background: var(--light-bg); color: #1a1a1a; }
body.dark-mode { background: var(--dark-bg); color: #e0d5c1; }

h1, h2, h3 { font-family: 'Playfair Display', serif; font-weight: 700; color: var(--navy); }
body.dark-mode h1, body.dark-mode h2, body.dark-mode h3 { color: var(--gold); }
.script-font { font-family: "Snell Roundhand", cursive; color: var(--gold); }
.center { text-align: center; }

/* ================= NAVIGATION ================= */
.top-bar { background: var(--navy); color: var(--gold); padding: 10px 5%; font-size: 11px; letter-spacing: 2px; display: flex; justify-content: space-between; text-transform: uppercase; }

header { padding: 20px 5%; background: var(--white); display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #e0d5c1; position: sticky; top: 0; z-index: 1000; box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
body.dark-mode header { background: #0d1117; border-bottom: 1px solid #333; }

.logo { font-size: 24px; font-weight: bold; color: var(--navy); text-transform: uppercase; }
.logo span { color: var(--gold); }
.gold { color: var(--gold) !important; }

nav a { color: var(--navy); margin: 0 15px; text-decoration: none; font-size: 11px; font-weight: 600; letter-spacing: 1.5px; transition: 0.3s; }
body.dark-mode nav a { color: #fff; }
nav a:hover { color: var(--gold); }

/* ================= SECTIONS ================= */
section { padding: 100px 10%; }
.gray-bg { background: #f4f1ea; }
body.dark-mode .gray-bg { background: #161b22; }

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }

/* Hero */
.hero { position: relative; height: 85vh; overflow: hidden; display: flex; align-items: center; justify-content: center; color: #fff; }
.hero video { position: absolute; width: 100%; height: 100%; object-fit: cover; z-index: -1; filter: brightness(0.4); }
.hero-content { padding: 60px; border: 1px solid rgba(197, 160, 89, 0.4); background: rgba(0,0,0,0.2); backdrop-filter: blur(10px); text-align: center; }
.hero-content h1 { font-size: 4.5rem; color: var(--gold); margin: 0; }

/* About Section */
.about-section { display: flex; align-items: center; gap: 60px; }
.about-section img { width: 100%; border-left: 8px solid var(--gold); }
.stats { display: flex; gap: 40px; margin-top: 30px; }

/* Table */
table { width: 100%; border-collapse: collapse; margin-top: 40px; background: #fff; }
body.dark-mode table { background: #0d1117; }
th { background: var(--navy); color: var(--gold); padding: 20px; text-align: left; font-size: 13px; text-transform: uppercase; }
td { padding: 20px; border-bottom: 1px solid #ddd; }
.status-stable { color: #2ecc71; font-weight: bold; }
.status-growth { color: var(--gold); font-weight: bold; }

/* Location Cards */
.location-card { padding: 30px; border: 1px solid #ddd; transition: var(--transition); background: var(--white); }
body.dark-mode .location-card { background: #161b22; border-color: #333; }
.location-card:hover { transform: translateY(-10px); border-color: var(--gold); }

/* Calculator Result */
.calc-container { max-width: 900px; margin: 0 auto; border: 1px solid var(--gold); padding: 50px; background: #fff; }
body.dark-mode .calc-container { background: #0d1117; }
.result-box { margin-top: 40px; padding: 40px; background: var(--navy); color: #fff; text-align: center; }
#roiResult { font-size: 4rem; font-family: 'Playfair Display'; color: var(--gold); }

/* Buttons & Inputs */
input { width: 100%; padding: 15px; border: 1px solid #ddd; background: #fafafa; }
.btn { background: var(--gold); color: #fff; padding: 15px 35px; text-decoration: none; display: inline-block; letter-spacing: 2px; font-weight: 600; cursor: pointer; border: none; }
.btn:hover { background: var(--navy); }

footer { background: #050505; color: #666; padding: 80px 5%; text-align: center; }
.tagline { letter-spacing: 5px; font-size: 10px; margin: 15px 0 40px; }
/* ================= COMPARISON TABLE ================= */
.table-container {
    overflow-x: auto;
    margin: 40px 0;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    text-align: left;
}

body.dark-mode .comparison-table { background: #0d1117; }

.comparison-table th, .comparison-table td {
    padding: 25px;
    border: 1px solid #eee;
}

body.dark-mode .comparison-table th, 
body.dark-mode .comparison-table td {
    border-color: #333;
}

.comparison-table th {
    background: var(--navy);
    color: var(--gold);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
}

.comparison-table .highlight {
    background: #fdfcfb;
    border-left: 2px solid var(--gold);
    border-right: 2px solid var(--gold);
}

body.dark-mode .comparison-table .highlight {
    background: #161b22;
}

.comparison-table tr:hover td {
    background: rgba(197, 160, 89, 0.05);
}

.footer-row td {
    font-weight: bold;
    color: var(--navy);
}

body.dark-mode .footer-row td {
    color: var(--gold);
}

/* Highlight the Recommended Tier */
th.highlight {
    background: var(--gold);
    color: #fff;
}
/* ================================
   PARTNER LOGOS SECTION
================================ */

.partners-section {
    padding: 100px 8%;
    background: #ffffff;
}

.partners-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    margin: 15px 0;
    letter-spacing: 0.5px;
}

.partners-section .sub {
    max-width: 720px;
    margin: 0 auto 60px;
    font-size: 1rem;
    color: #666;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 50px;
    align-items: center;
    justify-items: center;
}

.partner-logo img {
    max-width: 160px;
    max-height: 60px;
    filter: grayscale(100%);
    opacity: 0.65;
    transition: all 0.4s ease;
}

.partner-logo img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.partners-section .disclaimer {
    display: block;
    margin-top: 60px;
    font-size: 0.75rem;
    color: #999;
    letter-spacing: 0.5px;
}
/* ================================
   TESTIMONIALS SECTION
================================ */

#testimonials {
    padding: 120px 10%;
}

#testimonials h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.7rem;
    margin: 20px 0 70px;
}

.testimonial-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    background: #ffffff;
    padding: 45px 40px;
    border: 1px solid #eaeaea;
    position: relative;
}

.testimonial::before {
    content: "“";
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    color: #c8a24a;
    position: absolute;
    top: -20px;
    left: 20px;
}

.testimonial .quote {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 30px;
}

.testimonial h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.testimonial small {
    font-size: 0.8rem;
    color: #777;
}
.script-font {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.2rem;
    color: #b89b5e;
    letter-spacing: 0.5px;
}
