/*
Theme Name: Fat Pockets
Theme URI: https://fatpockets.co.uk
Author: Fat Pockets Limited
Author URI: https://fatpockets.co.uk
Description: Custom WordPress theme for Fat Pockets Limited - Revenue Revolutionaries. Professional revenue management consultancy for hospitality, serviced apartments and apart-hotels.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fatpockets
Tags: business, consulting, one-page, responsive, custom-colors
*/

/* ===================================
   Fat Pockets Ltd - Revenue Revolutionaries
   Brand Colors: Burgundy #871F4D, Gold #F9C95C
   =================================== */

:root {
    --burgundy: #871F4D;
    --burgundy-dark: #6B1840;
    --burgundy-light: #A62B63;
    --gold: #F9C95C;
    --gold-dark: #E5B23E;
    --gold-light: #FDD97A;
    --dark: #1a1a2e;
    --dark-alt: #16213e;
    --light: #f8f9fa;
    --white: #ffffff;
    --gray: #6c757d;
    --gray-light: #e9ecef;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark);
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===================================
   Typography
   =================================== */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
}

.text-gold {
    color: var(--gold);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.8rem;
    color: var(--burgundy);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 201, 92, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--burgundy);
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 42px;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
    background: rgba(26, 26, 46, 0.97);
    backdrop-filter: blur(10px);
}

.navbar.scrolled {
    background: rgba(26, 26, 46, 0.97);
    padding: 0.6rem 0;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: auto !important;
    width: 100% !important;
    max-width: 200px !important;
    display: block !important;
}

.navbar.scrolled .logo-img {
    max-width: 150px !important;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

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

.nav-link.cta-btn {
    background: var(--gold);
    color: var(--dark);
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 600;
}

.nav-link.cta-btn::after {
    display: none;
}

.nav-link.cta-btn:hover {
    background: var(--gold-dark);
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger .bar {
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark);
    overflow: hidden;
    z-index: 1;
    isolation: isolate;
}

.hero-skyline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        url('https://fatpockets.co.uk/wp-content/uploads/2026/06/Business-Card-Imagery_HK-Skyline-2023_03_02-23_37_35-UTC.jpg');
    background-size: 165% auto;
    background-position: 47% 64%;
    background-repeat: no-repeat;
    z-index: 0;
    pointer-events: none;
}

.hero-skyline::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        url('https://fatpockets.co.uk/wp-content/uploads/2026/07/fabsb17-hong-kong-4322654.jpg');
    background-size: 115% auto;
    background-position: 50% 38%;
    background-repeat: no-repeat;
    animation: dayNightCycle 10s ease-in-out infinite;
}

@keyframes dayNightCycle {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(135, 31, 77, 0.15) 0%, rgba(26, 26, 46, 0.35) 70%);
    animation: overlayCycle 10s ease-in-out infinite;
}

@keyframes overlayCycle {
    0% {
        opacity: 0.55;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.55;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 800px;
}

.hero-title {
    font-size: 4.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    font-weight: 700;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator span::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scrollDown 1.5s infinite;
}

@keyframes scrollDown {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

/* ===================================
   Sections
   =================================== */
.section {
    padding: 6rem 0;
}

.about {
    background: var(--white);
}

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

.about-content .lead-text {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--burgundy);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.about-content p {
    margin-bottom: 1rem;
    color: var(--gray);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-light);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--burgundy);
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray);
}

.about-visual {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.kpi-card {
    background: var(--light);
    padding: 1.5rem 2rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.kpi-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow);
}

.kpi-card.highlight {
    background: var(--burgundy);
    border-left-color: var(--gold);
}

.kpi-card.highlight h4 {
    color: var(--white);
}

.kpi-card.highlight .kpi-icon {
    color: var(--gold);
}

.kpi-icon {
    font-size: 1.8rem;
    color: var(--burgundy);
    min-width: 40px;
}

.kpi-card h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
}

/* ===================================
   Services
   =================================== */
.services {
    background: 
        url('https://fatpockets.co.uk/wp-content/uploads/2026/07/services-skyline.png');
    background-size: cover;
    background-position: bottom;
}

.services .section-title {
    color: var(--white);
}

.services .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

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

.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--gray-light);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--burgundy), var(--gold));
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

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

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.service-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===================================
   Approach
   =================================== */
.approach {
    background: var(--dark);
    position: relative;
}

.approach .section-title {
    color: var(--white);
}

.approach .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.approach-item {
    padding: 2.5rem;
    border: 1px solid rgba(249, 201, 92, 0.2);
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}

.approach-item:hover {
    border-color: var(--gold);
    background: rgba(249, 201, 92, 0.05);
    transform: translateY(-4px);
}

.approach-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.4;
    margin-bottom: 0.5rem;
}

.approach-item h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.approach-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

/* ===================================
   Team
   =================================== */
.team {
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.team-card {
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    transition: var(--transition);
    border: 1px solid var(--gray-light);
}

.team-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.team-card.featured {
    border-color: var(--gold);
    background: linear-gradient(to bottom, rgba(249, 201, 92, 0.05), transparent);
}

.team-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--gold);
}

.team-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
}

.team-card h3 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 0.3rem;
}

.team-role {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold-dark);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-card p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.7;
}

.team-social {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.team-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--burgundy);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
}

.team-social a:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-2px);
}

/* ===================================
   CTA Section
   =================================== */
.cta-section {
    background: 
        url('https://fatpockets.co.uk/wp-content/uploads/2026/06/louis-amal-416845-2023_03_02-23_37_35-UTC.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 5rem 0;
}

.cta-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 0, 0, 0.6);
}

.cta-content p {
    display: table;
    color: var(--white);
    font-size: 1.1rem;
    margin: 1.5rem auto 0;
    padding: 0.6rem 1.5rem;
    background: rgba(26, 26, 46, 0.75);
    border-radius: 30px;
}

/* ===================================
   Testimonials
   =================================== */
.testimonials {
    background: var(--white);
}

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

.testimonial-card {
    background: var(--light);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    border: 1px solid var(--gray-light);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 1.2rem;
    display: flex;
    gap: 3px;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--gray);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author strong {
    display: block;
    color: var(--dark);
    font-size: 0.95rem;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--burgundy);
}

/* ===================================
   Portfolio
   =================================== */
.portfolio {
    background: var(--dark);
}

.portfolio .section-title {
    color: var(--white);
}

.portfolio .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.portfolio-item {
    background: rgba(249, 201, 92, 0.08);
    border: 1px solid rgba(249, 201, 92, 0.2);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.portfolio-item:hover {
    border-color: var(--gold);
    background: rgba(249, 201, 92, 0.15);
    transform: translateY(-4px);
}

.portfolio-item i {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 0.8rem;
    display: block;
}

.portfolio-item span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
}

/* ===================================
   Pricing
   =================================== */
.pricing {
    background: 
        linear-gradient(rgba(26, 26, 46, 0.75), rgba(26, 26, 46, 0.75)),
        url('https://fatpockets.co.uk/wp-content/uploads/2026/06/joey-kyber-132520-2023_03_02-23_37_35-UTC.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.pricing .section-title {
    color: var(--white);
}

.pricing .section-subtitle {
    color: rgba(255, 255, 255, 0.85);
}

.pricing-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
}

.pricing-tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    padding: 2.5rem 2rem;
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--burgundy);
}

.pricing-card.featured {
    border-color: var(--gold);
    background: linear-gradient(to bottom, #fdf6e3, var(--white));
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--dark);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-light);
}

.pricing-header h3 {
    font-size: 1.4rem;
    color: var(--burgundy);
    margin-bottom: 0.5rem;
}

.pricing-description {
    font-size: 0.9rem;
    color: var(--gray);
}

.pricing-examples {
    margin-bottom: 2rem;
}

.pricing-example {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--gray-light);
}

.pricing-example:last-child {
    border-bottom: none;
}

.room-count {
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 500;
}

.price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--burgundy);
}

.period {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--gray);
}

.pricing-features {
    list-style: none;
    padding: 0;
}

.pricing-features li {
    padding: 0.6rem 0;
    font-size: 0.9rem;
    color: var(--gray);
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.pricing-features li i {
    color: var(--gold);
    margin-top: 3px;
    font-size: 0.9rem;
}

.pricing-footer {
    text-align: center;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    border: 2px solid var(--burgundy);
    margin-bottom: 2rem;
}

.pricing-footer p {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.pricing-notes {
    text-align: center;
    color: rgba(255, 255, 255, 0.85);
}

.pricing-notes i {
    color: var(--gold);
    margin-right: 0.5rem;
}

/* ===================================
   Contact
   =================================== */
.contact {
    background: var(--light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.contact-item i {
    font-size: 1.3rem;
    color: var(--burgundy);
    margin-top: 4px;
    min-width: 24px;
}

.contact-item h4 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray);
    margin-bottom: 0.3rem;
}

.contact-item a,
.contact-item p {
    color: var(--dark);
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--burgundy);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--burgundy);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-3px);
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--gray-light);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--burgundy);
    box-shadow: 0 0 0 3px rgba(135, 31, 77, 0.1);
}

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

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    height: auto;
    width: 100%;
    max-width: 300px;
    margin-bottom: 1.5rem;
    display: block;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    opacity: 0.8;
}

.footer-links h4,
.footer-services h4 {
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.2rem;
}

.footer-links ul li,
.footer-services ul li {
    margin-bottom: 0.6rem;
}

.footer-links ul li a,
.footer-services ul li a {
    font-size: 0.9rem;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links ul li a:hover,
.footer-services ul li a:hover {
    opacity: 1;
    color: var(--gold);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    font-size: 0.65rem;
    opacity: 0.7;
    text-align: center;
}

/* ===================================
   Animations
   =================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   Responsive
   =================================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-tiers {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--dark);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transition: var(--transition);
        padding: 2rem;
        z-index: 1001;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .hero-skyline {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
        pointer-events: none;
        background-size: cover !important;
        background-position: center !important;
    }
    
    .hero-skyline::before {
        background-size: cover !important;
        background-position: center !important;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .container {
        padding: 0 1.2rem;
    }
}
