/*
  ==============================================
  css/site.css - Corporate Redesign Stylesheet
  ==============================================
*/

:root {
    /* Brand Colors */
    --primary: #1b2a4b;
    --primary-dark: #101b33;
    --primary-light: #2c4270;

    --secondary: #c79a3b;
    --secondary-dark: #a77f2c;
    --secondary-light: #dcb360;

    --accent-soft: rgba(199, 154, 59, 0.12);

    /* Neutrals */
    --dark: #0f1521;
    --dark-alt: #172033;
    --light: #f8f9fc;
    --surface: #ffffff;

    /* Text */
    --text-main: #242c3d;
    --text-muted: #57637a;
    --text-light: #8b96ad;
    --text-inverse: #ffffff;

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, rgba(27, 42, 75, 0.95) 0%, rgba(15, 21, 33, 0.98) 100%);
    --gradient-gold: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    --gradient-gold-hover: linear-gradient(135deg, #d3a74a 0%, #e8c274 100%);

    /* Layout */
    --container-max: 1280px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;

    /* Shadows */
    --shadow-sm: 0 4px 12px rgba(15, 21, 33, 0.05);
    --shadow-md: 0 12px 24px rgba(15, 21, 33, 0.08);
    --shadow-lg: 0 24px 48px rgba(15, 21, 33, 0.12);
    --shadow-gold: 0 8px 20px rgba(199, 154, 59, 0.25);

    /* Transitions */
    --trans-fast: 0.2s ease;
    --trans-base: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --trans-slow: 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  }

  /* -------------------------------------------
     RESET & BASE
     ------------------------------------------- */
  *, *::before, *::after {
    box-sizing: border-box;
  }

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

  body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: var(--light);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
  }

  h1, h2, h3, h4, h5, h6 {
    margin: 0 0 1rem;
    font-family: 'Playfair Display', serif;
    color: var(--primary-dark);
    font-weight: 700;
    line-height: 1.2;
  }

  p {
    margin: 0 0 1.5rem;
  }

  a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--trans-fast);
  }

  a:hover {
    color: var(--secondary);
  }

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

  ul, ol {
    margin: 0 0 1.5rem;
    padding-left: 1.5rem;
  }

  .site-container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
  }

  /* -------------------------------------------
     UTILITIES
     ------------------------------------------- */
  .text-center { text-align: center; }
  .text-gold { color: var(--secondary); }

  .section {
    padding: 6rem 0;
  }
  .section-light {
    background-color: var(--surface);
  }
  .section-dark {
    background-color: var(--primary-dark);
    color: var(--text-inverse);
  }
  .section-dark h2, .section-dark h3 {
    color: var(--surface);
  }
  .section-dark .text-muted {
    color: var(--text-light);
  }

  .eyebrow {
    display: inline-block;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    background: var(--accent-soft);
    color: var(--secondary-dark);
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
  }

  .section-header {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
  }
  .section-header h2 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    margin-bottom: 1rem;
  }
  .section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 0;
  }

  /* Buttons */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.2rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--trans-base);
    text-align: center;
    border: 2px solid transparent;
  }

  .btn-primary {
    background: var(--gradient-gold);
    color: var(--dark-alt);
    font-weight: 600;
    box-shadow: var(--shadow-gold);
  }
  .btn-primary:hover {
    background: var(--gradient-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(199, 154, 59, 0.35);
    color: var(--dark);
  }

  .btn-outline {
    background: transparent;
    color: var(--surface);
    border-color: rgba(255, 255, 255, 0.3);
  }
  .btn-outline:hover {
    border-color: var(--surface);
    background: rgba(255, 255, 255, 0.1);
  }

  .btn-outline-dark {
    background: transparent;
    color: var(--primary);
    border-color: rgba(27, 42, 75, 0.2);
  }
  .btn-outline-dark:hover {
    border-color: var(--primary);
    background: rgba(27, 42, 75, 0.05);
  }

  /* -------------------------------------------
     GLOBAL LAYOUT: HEADER
     ------------------------------------------- */
  .site-topbar {
    background-color: var(--dark);
    color: var(--surface);
    font-size: 0.8rem;
    padding: 0.5rem 0;
  }

  .topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .topbar-left {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
  }

  .topbar-left a, .topbar-left span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--trans-fast);
    color: var(--surface);
  }
  .topbar-left a:hover {
    color: var(--secondary);
  }

  .topbar-left .icon {
    font-style: normal;
    color: var(--secondary);
  }

  .topbar-right {
    display: flex;
    gap: 1rem;
  }

  .topbar-right a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: var(--surface);
    font-size: 0.65rem;
    text-transform: uppercase;
    font-weight: 600;
  }
  .topbar-right a:hover {
    background: var(--secondary);
    color: var(--dark);
    transform: translateY(-2px);
  }

  /* Main Header */
  .site-header {
    background: var(--surface);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }

  .site-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
  }

  .site-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .site-brand img {
    /* Using inline styles for 250px width now */
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
  }

  .site-brand .brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .site-brand .title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.1;
  }

  .site-brand .subtitle {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--secondary-dark);
    font-weight: 500;
  }

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

  .site-nav-links a:not(.btn-cta-nav) {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-main);
    position: relative;
    padding: 0.5rem 0;
  }

  .site-nav-links a:not(.btn-cta-nav)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--trans-base);
  }

  .site-nav-links a:not(.btn-cta-nav):hover {
    color: var(--primary);
  }

  .site-nav-links a:not(.btn-cta-nav):hover::after {
    width: 100%;
  }

  .btn-cta-nav {
    background: var(--gradient-gold);
    color: var(--dark) !important;
    padding: 0.7rem 1.6rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow-gold);
    transition: var(--trans-base);
  }
  .btn-cta-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(199, 154, 59, 0.4);
  }

  /* Mobile Nav Toggle */
  .nav-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    z-index: 105;
  }
  .nav-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--primary-dark);
    position: relative;
    border-radius: 2px;
    transition: var(--trans-fast);
  }
  .nav-toggle span::before,
  .nav-toggle span::after {
    content: '';
    position: absolute;
    width: 28px;
    height: 2px;
    background: var(--primary-dark);
    left: 0;
    border-radius: 2px;
    transition: var(--trans-fast);
  }
  .nav-toggle span::before { top: -8px; }
  .nav-toggle span::after { bottom: -8px; }

  /* Mobile Navigation Drawer */
  .mobile-nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 21, 33, 0.6);
    backdrop-filter: blur(4px);
    z-index: 102;
    opacity: 0;
    visibility: hidden;
    transition: var(--trans-base);
  }
  .mobile-nav-backdrop.visible {
    opacity: 1;
    visibility: visible;
  }

  .mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(360px, 85vw);
    background: var(--surface);
    z-index: 103;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
  }
  .mobile-nav.open {
    transform: translateX(0);
  }

  .mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
  }

  .nav-close {
    background: var(--light);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--trans-fast);
  }
  .nav-close:hover {
    background: var(--primary);
    color: white;
  }

  .mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .mobile-nav-links a {
    font-size: 1.2rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--primary-dark);
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }

  .mobile-nav-links .mobile-cta {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    text-align: center;
    padding: 1rem;
    border: none;
    margin-top: 1rem;
  }

  body.nav-open {
    overflow: hidden;
  }

  /* -------------------------------------------
     GLOBAL LAYOUT: FOOTER
     ------------------------------------------- */
  .site-footer {
    background: var(--dark);
    color: var(--text-light);
    padding: 5rem 0 2rem;
  }

  .footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
  }

  .footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .footer-brand img {
    /* Using inline styles for 250px width now */
    border-radius: 6px;
    background: white;
    padding: 2px;
  }

  .footer-brand .title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--surface);
  }

  .footer-desc {
    font-size: 0.95rem;
    line-height: 1.8;
  }

  .footer-heading {
    color: var(--surface);
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
  }
  .footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--secondary);
  }

  .footer-col-links nav {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }

  .footer-col-links a, .footer-contact-links a {
    color: var(--text-light);
    font-size: 0.95rem;
  }
  .footer-col-links a:hover, .footer-contact-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
  }

  .footer-col-contact address p {
    font-style: normal;
    font-size: 0.95rem;
    line-height: 1.8;
  }

  .footer-contact-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  .footer-contact-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }

  .footer-socials {
    display: flex;
    gap: 1rem;
  }

  .footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    color: var(--surface);
    transition: var(--trans-base);
    font-size: 0.8rem;
    font-weight: 600;
  }
  .footer-socials a:hover {
    background: var(--secondary);
    color: var(--dark);
    transform: translateY(-3px);
  }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 0.85rem;
  }

  .footer-bottom p {
    margin: 0;
  }

  .footer-legal {
    display: flex;
    gap: 1.5rem;
  }
  .footer-legal a {
    color: var(--text-light);
  }
  .footer-legal a:hover {
    color: var(--surface);
  }

  /* -------------------------------------------
     PAGES HERO SECTIONS (Global Inner Page)
     ------------------------------------------- */
  .page-hero {
    position: relative;
    padding: 8rem 0 6rem;
    background: var(--primary-dark);
    color: var(--surface);
    text-align: center;
    overflow: hidden;
  }
  .page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/header2.jpg') center/cover no-repeat;
    opacity: 0.15;
    z-index: 1;
  }
  .page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, var(--light), transparent);
    z-index: 2;
  }

  .page-hero .site-container {
    position: relative;
    z-index: 3;
    max-width: 800px;
  }

  .page-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--surface);
    margin-bottom: 1.5rem;
  }
  .page-hero p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
  }

  /* -------------------------------------------
     HOME PAGE STYLES
     ------------------------------------------- */

  /* Home Hero Redesigned */
  .home-hero-redesigned {
    position: relative;
    min-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 0;
    background: var(--dark);
    color: var(--surface);
    overflow: hidden;
  }

  .home-hero-redesigned-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  .home-hero-redesigned-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .home-hero-redesigned-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(16, 27, 51, 0.8) 0%, rgba(15, 21, 33, 0.9) 100%);
    z-index: 1;
  }

  .home-hero-redesigned .site-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
  }

  .home-hero-redesigned-content {
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .eyebrow-light {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    background: rgba(199, 154, 59, 0.2);
    color: var(--secondary-light);
    border: 1px solid rgba(199, 154, 59, 0.4);
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 2rem;
  }

  .home-hero-redesigned-content h1 {
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    color: var(--surface);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 12px rgba(0,0,0,0.3);
  }

  .home-hero-redesigned-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 3rem;
    max-width: 700px;
    line-height: 1.8;
  }

  .home-hero-redesigned-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 4rem;
  }

  .btn-lg {
    padding: 1.1rem 2.8rem;
    font-size: 1.1rem;
  }

  .home-hero-redesigned-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 4rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  }

  .home-hero-redesigned-stats .stat-item {
    text-align: center;
  }

  .home-hero-redesigned-stats .stat-item .val {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 0.5rem;
  }

  .home-hero-redesigned-stats .stat-item .label {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  /* Feature/Stats Bar */
  .corporate-stats {
    padding: 4rem 0;
    background: var(--surface);
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
  }
  .stat-box h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
  }
  .stat-box p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
  }

  /* Cards Grid */
  .cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 2rem;
  }
  .service-card {
    background: var(--surface);
    padding: 3rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.03);
    transition: var(--trans-base);
    text-align: center;
  }
  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
  }
  .service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--accent-soft);
    color: var(--secondary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
  }
  .service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }

  /* Home Showcase Grid */
  .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .portfolio-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 400px;
    box-shadow: var(--shadow-md);
    group: portfolio;
  }
  .portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  }
  .portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 21, 33, 0.9) 0%, rgba(15, 21, 33, 0.2) 50%, transparent 100%);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--surface);
  }
  .portfolio-overlay h3 {
    color: var(--surface);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
  }
  .portfolio-item:hover img {
    transform: scale(1.05);
  }

  /* Split Section */
  .split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
  .split-media img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
  }
  .split-content .checklist {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
  }
  .split-content .checklist li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-weight: 500;
  }
  .split-content .checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--secondary);
    font-weight: bold;
  }

  /* CTA Banner */
  .cta-banner {
    background: var(--gradient-hero);
    border-radius: var(--radius-lg);
    padding: 5rem 3rem;
    text-align: center;
    color: var(--surface);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
  }
  .cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(199, 154, 59, 0.15) 0%, transparent 70%);
  }
  .cta-banner h2 {
    color: var(--surface);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
  .cta-banner p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 2.5rem;
  }

  /* -------------------------------------------
     GALLERY PAGE
     ------------------------------------------- */
  .masonry-grid {
    column-count: 3;
    column-gap: 1.5rem;
  }
  .masonry-item {
    break-inside: avoid;
    margin-bottom: 1.5rem;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
  }
  .masonry-item img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
  }
  .masonry-item:hover img {
    transform: scale(1.05);
  }

  /* -------------------------------------------
     CONTACT PAGE
     ------------------------------------------- */
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
  }
  .contact-info-card {
    background: var(--surface);
    padding: 3rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
  }
  .contact-detail-box {
    margin-bottom: 2rem;
  }
  .contact-detail-box h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--secondary);
    margin-bottom: 0.5rem;
  }

  .contact-form {
    background: var(--surface);
    padding: 3.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
  }
  .form-group {
    margin-bottom: 1.5rem;
  }
  .form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
  }
  .form-control {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--trans-fast);
    background: var(--light);
  }
  .form-control:focus {
    outline: none;
    border-color: var(--secondary);
    background: var(--surface);
    box-shadow: 0 0 0 4px rgba(199, 154, 59, 0.1);
  }
  textarea.form-control {
    resize: vertical;
    min-height: 150px;
  }

  /* -------------------------------------------
     MEDIA QUERIES
     ------------------------------------------- */
  @media (max-width: 1024px) {
    .site-nav-links {
      display: none;
    }
    .nav-toggle {
      display: block;
    }
    .home-hero-redesigned-stats {
      padding: 1.5rem 2rem;
      gap: 2rem;
    }
    .stats-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .footer-inner {
      grid-template-columns: repeat(2, 1fr);
      gap: 3rem;
    }
    .contact-grid {
      grid-template-columns: 1fr;
    }
    .split-section {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 768px) {
    .topbar-left {
      justify-content: center;
    }
    .topbar-right {
      display: none;
    }
    .portfolio-grid {
      grid-template-columns: 1fr;
    }
    .masonry-grid {
      column-count: 2;
    }
    .footer-inner {
      grid-template-columns: 1fr;
      text-align: center;
    }
    .footer-brand {
      justify-content: center;
    }
    .footer-heading::after {
      left: 50%;
      transform: translateX(-50%);
    }
    .footer-socials {
      justify-content: center;
    }
    .footer-bottom {
      flex-direction: column;
      gap: 1rem;
    }
    .cta-banner {
      padding: 3rem 1.5rem;
    }
  }

  @media (max-width: 480px) {
    .masonry-grid {
      column-count: 1;
    }
    .stats-grid {
      grid-template-columns: 1fr;
    }
    .home-hero-redesigned-stats {
      flex-direction: column;
      gap: 1.5rem;
      padding: 1.5rem;
      width: 100%;
    }
    .contact-form {
      padding: 2rem 1.5rem;
    }
    .home-hero-redesigned-cta {
      flex-direction: column;
      width: 100%;
      gap: 1rem;
    }
    .btn {
      width: 100%;
    }
  }
