/* ============================================
   PALM COST LLC — Premium Property Services
   Luxury Real Estate Inspired Corporate Website
   ============================================ */

/* --- Font Import --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Lato:wght@300;400;700;900&display=swap');

/* --- Custom Properties --- */
:root {
    --navy-deep: #070f1a;
    --navy: #0d1b2a;
    --navy-light: #1b2d45;
    --navy-mid: #152238;
    --gold: #c4a265;
    --gold-light: #d4b87a;
    --gold-dark: #a8894f;
    --gold-muted: rgba(196, 162, 101, 0.15);
    --cream: #f7f3ec;
    --cream-dark: #ede6d6;
    --warm-white: #faf8f4;
    --text-dark: #1a1a1a;
    --text-medium: #555555;
    --text-light: #999999;
    --border: #e0d8c8;
    --white: #ffffff;
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --header-height: 80px;
    --container-max: 1200px;
    --container-padding: 40px;
    --section-padding: 120px;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-medium);
    background: var(--warm-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

ul {
    list-style: none;
}

button,
input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
    background: none;
}

button {
    cursor: pointer;
}

address {
    font-style: normal;
}

/* --- Layout --- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* --- Section Modifiers --- */
.section--cream {
    background: var(--cream);
}

.section--navy {
    background: var(--navy);
}

.section--warm {
    background: var(--warm-white);
}

/* --- Typography --- */
.section-label {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-label--light {
    color: var(--gold-light);
}

.section-title {
    font-family: var(--font-serif);
    font-size: 42px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 24px;
}

.section-title--dark {
    color: var(--text-dark);
}

.section-title--light {
    color: var(--cream);
}

.section-header {
    margin-bottom: 64px;
}

.section-header--center {
    text-align: center;
}

.section-subtitle {
    max-width: 600px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-medium);
}

.section-subtitle--light {
    color: rgba(255, 255, 255, 0.6);
}

/* --- Divider --- */
.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 28px;
}

.divider--gold .divider-line {
    width: 60px;
    height: 1px;
    background: var(--gold);
}

.divider--gold .divider-diamond {
    width: 7px;
    height: 7px;
    background: var(--gold);
    transform: rotate(45deg);
    flex-shrink: 0;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 16px 44px;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-align: center;
    transition: all var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

.btn-primary:hover {
    background: transparent;
    color: var(--gold);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-full {
    width: 100%;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    background: rgba(10, 22, 40, 0.92);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(196, 162, 101, 0.08);
    transition: background var(--transition);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Logo */
.logo {
    display: flex;
    align-items: baseline;
    gap: 8px;
    z-index: 1001;
}

.logo-main {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 3px;
}

.logo-sub {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 300;
    color: var(--gold);
    letter-spacing: 4px;
}

/* Navigation */
.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    position: relative;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    padding: 4px 0;
    transition: color var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    color: var(--gold) !important;
    border: 1px solid rgba(196, 162, 101, 0.4);
    padding: 8px 20px !important;
    transition: all var(--transition) !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--gold) !important;
    color: var(--navy) !important;
}

/* Header Phone */
.header-phone {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    z-index: 1001;
}

.phone-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
}

.phone-number {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    padding: 4px;
}

.nav-toggle-label span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.35s ease;
    transform-origin: center;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(7, 15, 26, 0.7) 0%,
        rgba(13, 27, 42, 0.85) 50%,
        rgba(7, 15, 26, 0.95) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 820px;
    padding: 0 var(--container-padding);
    padding-top: var(--header-height);
}

.hero-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 68px;
    font-weight: 400;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 28px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-subtitle {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 44px;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1.2s both;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: fadeInUp 1s ease-out 1.6s both;
}

.scroll-indicator span {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.scroll-line {
    width: 1px;
    height: 44px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    position: relative;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
    animation: scrollPulse 2s ease-in-out infinite;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
    padding: var(--section-padding) 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.about-image img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.about-image:hover img {
    transform: scale(1.03);
}

.about-image-accent {
    position: absolute;
    top: -16px;
    left: -16px;
    right: 16px;
    bottom: 16px;
    border: 1px solid var(--gold);
    z-index: 1;
    pointer-events: none;
}

.about-experience {
    position: absolute;
    bottom: -30px;
    right: -30px;
    z-index: 3;
    background: var(--navy);
    padding: 28px 32px;
    text-align: center;
    border: 1px solid rgba(196, 162, 101, 0.2);
}

.experience-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 4px;
}

.experience-text {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.about-text {
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-medium);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 600;
    color: var(--gold-dark);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-light);
}

/* ============================================
   SERVICES
   ============================================ */
.services {
    padding: var(--section-padding) 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    padding: 40px 28px;
    border: 1px solid rgba(196, 162, 101, 0.12);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.service-card:hover {
    border-color: rgba(196, 162, 101, 0.35);
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.02);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 400;
    color: rgba(196, 162, 101, 0.2);
    line-height: 1;
    margin-bottom: 20px;
    transition: color var(--transition);
}

.service-card:hover .service-number {
    color: rgba(196, 162, 101, 0.5);
}

.service-title {
    font-family: var(--font-serif);
    font-size: 19px;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 14px;
    line-height: 1.3;
}

.service-desc {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-us {
    padding: var(--section-padding) 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.why-card {
    text-align: center;
    padding: 20px;
    transition: transform var(--transition);
}

.why-card:hover {
    transform: translateY(-4px);
}

.why-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gold);
    transform: rotate(45deg);
    transition: all var(--transition);
}

.why-card:hover .why-icon {
    background: var(--gold);
}

.why-icon-diamond {
    width: 10px;
    height: 10px;
    background: var(--gold);
    transition: background var(--transition);
}

.why-card:hover .why-icon-diamond {
    background: var(--navy);
}

.why-title {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

.why-desc {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-medium);
}

/* ============================================
   PROCESS
   ============================================ */
.process {
    padding: var(--section-padding) 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: calc(12.5% + 28px);
    right: calc(12.5% + 28px);
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        var(--gold) 15%,
        var(--gold) 85%,
        transparent
    );
}

.process-step {
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.step-circle {
    width: 60px;
    height: 60px;
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gold);
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 500;
    color: var(--gold);
    background: var(--cream);
    position: relative;
    z-index: 2;
    transition: all var(--transition);
}

.process-step:hover .step-circle {
    background: var(--gold);
    color: var(--navy);
}

.step-title {
    font-family: var(--font-serif);
    font-size: 19px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 14px;
    line-height: 1.3;
}

.step-desc {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-medium);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    padding: var(--section-padding) 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    padding: 44px 36px;
    border: 1px solid rgba(196, 162, 101, 0.12);
    position: relative;
    transition: all var(--transition);
}

.testimonial-card:hover {
    border-color: rgba(196, 162, 101, 0.3);
    transform: translateY(-4px);
}

.stars {
    color: var(--gold);
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.quote-mark {
    font-family: var(--font-serif);
    font-size: 72px;
    font-weight: 400;
    color: rgba(196, 162, 101, 0.15);
    line-height: 0.6;
    margin-bottom: 8px;
    pointer-events: none;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 28px;
    font-style: italic;
}

.testimonial-divider {
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 20px;
}

.testimonial-name {
    font-family: var(--font-serif);
    font-size: 17px;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 4px;
}

.testimonial-role {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
    padding: var(--section-padding) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-intro {
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-medium);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.contact-item:hover .contact-item-icon {
    border-color: var(--gold);
    background: var(--gold-muted);
}

/* CSS-only icons */
.icon-pin {
    display: block;
    width: 12px;
    height: 16px;
    border: 2px solid var(--gold-dark);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    position: relative;
}

.icon-pin::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 5px;
    height: 5px;
    background: var(--gold-dark);
    border-radius: 50%;
}

.icon-phone {
    display: block;
    width: 10px;
    height: 18px;
    border: 2px solid var(--gold-dark);
    border-radius: 2px 2px 8px 8px;
    position: relative;
}

.icon-phone::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 2px;
    background: var(--gold-dark);
    border-radius: 0 0 2px 2px;
}

.icon-email {
    display: block;
    width: 18px;
    height: 13px;
    border: 2px solid var(--gold-dark);
    border-radius: 2px;
    position: relative;
}

.icon-email::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    height: 0;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-top: 8px solid var(--gold-dark);
}

.contact-item-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 4px;
}

.contact-item-value {
    display: block;
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.6;
}

.contact-link {
    color: var(--gold-dark);
    transition: color var(--transition);
}

.contact-link:hover {
    color: var(--gold);
}

.contact-hours {
    padding-top: 28px;
    border-top: 1px solid var(--border);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    padding: 48px;
    border: 1px solid var(--border);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    margin-bottom: 28px;
}

.form-group label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    background: transparent;
    font-size: 15px;
    color: var(--text-dark);
    transition: border-color 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
    font-weight: 300;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-bottom-color: var(--gold);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c4a265' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    padding-right: 24px;
}

.form-group select option {
    color: var(--text-dark);
    background: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form .btn {
    margin-top: 8px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--navy-deep);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr 0.8fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
}

.footer-about-text {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 24px;
}

.footer-contact-mini {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-heading {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-links a:hover {
    color: var(--gold-light);
    padding-left: 8px;
}

.footer-address {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 28px;
}

.footer-hours {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-hours-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
}

.footer-copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
}

.footer-bottom-links {
    display: flex;
    gap: 28px;
}

.footer-bottom-links a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--gold);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollPulse {
    0% {
        top: 0;
        opacity: 1;
    }
    100% {
        top: 44px;
        opacity: 0;
    }
}

/* ============================================
   RESPONSIVE — TABLET (max-width: 1024px)
   ============================================ */
@media (max-width: 1024px) {
    :root {
        --section-padding: 90px;
        --container-padding: 32px;
    }

    .section-title {
        font-size: 36px;
    }

    .hero-title {
        font-size: 52px;
    }

    .about-grid {
        gap: 48px;
    }

    .about-image img {
        height: 440px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;
    }

    .process-steps::before {
        display: none;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .contact-grid {
        gap: 48px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

/* ============================================
   RESPONSIVE — MOBILE NAV (max-width: 900px)
   ============================================ */
@media (max-width: 900px) {
    .nav-toggle-label {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(7, 15, 26, 0.98);
        -webkit-backdrop-filter: blur(24px);
        backdrop-filter: blur(24px);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        z-index: 999;
    }

    .nav-toggle:checked ~ .nav {
        opacity: 1;
        visibility: visible;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 28px;
    }

    .nav-links a {
        font-size: 16px;
        letter-spacing: 3px;
    }

    .nav-links a::after {
        bottom: -6px;
    }

    .nav-cta {
        margin-top: 12px;
        padding: 12px 32px !important;
    }

    .header-phone {
        display: none;
    }

    /* Hamburger to X animation */
    .nav-toggle:checked ~ .nav-toggle-label span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle:checked ~ .nav-toggle-label span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* ============================================
   RESPONSIVE — MOBILE LAYOUT (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {
    :root {
        --section-padding: 72px;
        --container-padding: 24px;
        --header-height: 68px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-header {
        margin-bottom: 48px;
    }

    .section-subtitle {
        font-size: 15px;
    }

    /* Hero */
    .hero-title {
        font-size: 38px;
    }

    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 32px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 14px;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
    }

    .scroll-indicator {
        display: none;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-image img {
        height: 360px;
    }

    .about-image-accent {
        top: -12px;
        left: -12px;
        right: 12px;
        bottom: 12px;
    }

    .about-experience {
        bottom: -20px;
        right: 20px;
        padding: 20px 24px;
    }

    .experience-number {
        font-size: 36px;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .stat-number {
        font-size: 28px;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 32px 24px;
    }

    /* Why Us */
    .why-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .why-card {
        padding: 12px;
    }

    /* Process */
    .process-steps {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .process-step {
        padding: 0;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-form-wrapper {
        padding: 32px 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* ============================================
   RESPONSIVE — SMALL MOBILE (max-width: 480px)
   ============================================ */
@media (max-width: 480px) {
    :root {
        --section-padding: 60px;
        --container-padding: 20px;
    }

    .logo-main {
        font-size: 18px;
        letter-spacing: 2px;
    }

    .logo-sub {
        font-size: 9px;
    }

    .hero-title {
        font-size: 30px;
    }

    .hero-label {
        font-size: 10px;
        letter-spacing: 3px;
    }

    .about-image img {
        height: 280px;
    }

    .about-experience {
        position: relative;
        bottom: auto;
        right: auto;
        display: inline-block;
        margin-top: 16px;
    }

    .about-stats {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }

    .stat {
        padding: 16px 0;
        border-bottom: 1px solid var(--border);
    }

    .stat:last-child {
        border-bottom: none;
    }

    .stat-number {
        font-size: 32px;
    }

    .btn {
        padding: 14px 32px;
        font-size: 10px;
        letter-spacing: 2px;
    }
}

/* ============================================
   ACCESSIBILITY — Focus Styles
   ============================================ */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .header,
    .scroll-indicator,
    .hero-overlay,
    .hero-image {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 40px 0;
    }

    .hero-content {
        padding-top: 0;
    }

    .hero-title,
    .hero-subtitle {
        color: #000;
    }

    .section--navy {
        background: #f5f5f5;
    }

    .section-title--light,
    .service-title,
    .testimonial-name {
        color: #000;
    }

    .section-subtitle--light,
    .service-desc,
    .testimonial-text,
    .testimonial-role {
        color: #555;
    }

    body {
        font-size: 12pt;
        color: #000;
    }
}