/* ===================================
   Avanish Developers - Premium Real Estate Website
   Color Theme: Red & White with Gold Accents
   =================================== */

/* ===== CSS VARIABLES ===== */
:root {
    /* Primary Colors */
    --color-primary: #DC2626;        /* Vibrant Red */
    --color-primary-dark: #991B1B;   /* Darker Red */
    --color-primary-light: #EF4444;  /* Lighter Red */
    
    /* Secondary Colors */
    --color-gold: #C9A961;           /* Gold */
    --color-gold-light: #E4C784;     /* Light Gold */
    --color-gold-dark: #B08D45;      /* Dark Gold */
    
    /* Neutral Colors */
    --color-white: #FFFFFF;
    --color-off-white: #FAFAFA;
    --color-light-gray: #F5F5F5;
    --color-gray: #666666;
    --color-dark-gray: #333333;
    --color-black: #1A1A1A;
    
    /* Fonts */
    --font-primary: 'Montserrat', sans-serif;
    --font-heading: 'Playfair Display', serif;
    
    /* Transitions */
    --transition-smooth: all 0.3s ease;
    --transition-fast: all 0.2s ease;
    
    /* Shadows */
    --shadow-small: 0 2px 8px rgba(220, 38, 38, 0.08);
    --shadow-medium: 0 4px 16px rgba(220, 38, 38, 0.12);
    --shadow-large: 0 8px 32px rgba(220, 38, 38, 0.16);
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

html {
    overflow-x: hidden;
    width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-black);
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.75rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
}

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

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

video {
    max-width: 100%;
    width: 100%;
    height: auto;
    object-fit: cover;
}

iframe {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}

ul {
    list-style: none;
}

/* ===== RESPONSIVE UTILITIES ===== */
.text-center-mobile {
    text-align: center;
}

@media (min-width: 769px) {
    .text-center-mobile {
        text-align: left;
    }
}

.hide-mobile {
    display: block;
}

.show-mobile {
    display: none;
}

@media (max-width: 768px) {
    .hide-mobile {
        display: none;
    }
    
    .show-mobile {
        display: block;
    }
}

/* Ensure text wraps properly on all devices */
p, span, a, li, td, th {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Responsive tables */
table {
    width: 100%;
    border-collapse: collapse;
}

@media (max-width: 768px) {
    table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* ===== GLOBAL OVERFLOW PREVENTION ===== */
section {
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
    position: relative;
}

section > * {
    max-width: 100%;
    box-sizing: border-box;
}

/* ===== CONTAINER ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    box-sizing: border-box;
}

.navbar .container {
    width: 100%;
    max-width: 100%;
    padding: 0 1rem;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .navbar .container {
        padding: 0 0.75rem;
    }
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100vw;
    background-color: transparent;
    box-shadow: none;
    z-index: 1000;
    transition: var(--transition-smooth);
    overflow: visible;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-medium);
}

.navbar.scrolled .nav-menu a {
    color: var(--color-dark-gray);
}

.navbar.scrolled .nav-toggle span {
    background-color: var(--color-primary);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    position: relative;
    width: 100%;
    min-width: 0;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    cursor: pointer;
    flex-shrink: 1;
    min-width: 0;
    max-width: calc(100% - 50px);
}

.logo-image {
    height: 120px;
    width: auto;
    max-width: 100%;
    transition: var(--transition-smooth);
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
    object-fit: contain;
}

.logo-image:hover {
    transform: scale(1.05);
}

.navbar.scrolled .logo-image {
    filter: none;
}

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

.nav-menu a {
    font-weight: 500;
    color: var(--color-white);
    position: relative;
    padding: 0.5rem 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

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

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--color-gold);
}

.navbar.scrolled .nav-menu a {
    color: var(--color-dark-gray);
    text-shadow: none;
}

.navbar.scrolled .nav-menu a::after {
    background-color: var(--color-primary);
}

.navbar.scrolled .nav-menu a:hover,
.navbar.scrolled .nav-menu a.active {
    color: var(--color-primary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
    margin-right: 0;
    z-index: 1001;
    position: relative;
    flex-shrink: 0;
    min-width: 30px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--color-white);
    transition: var(--transition-smooth);
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-weight: 600;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-family: var(--font-primary);
    font-size: 1rem;
    border-radius: 4px;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
    border: 2px solid var(--color-primary);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

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

.btn-light {
    background-color: var(--color-white);
    color: var(--color-primary);
    border: 2px solid var(--color-white);
}

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

.btn-small {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

.btn-full {
    width: 100%;
}

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

.hero .hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    max-width: none;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
    z-index: 0;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(220, 38, 38, 0.3) 0%, rgba(153, 27, 27, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.hero-title .highlight {
    color: var(--color-gold);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-off-white);
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid var(--color-white);
    border-radius: 25px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-indicator span {
    width: 4px;
    height: 10px;
    background-color: var(--color-white);
    border-radius: 2px;
    animation: scrollDown 2s infinite;
}

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

@keyframes scrollDown {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(15px);
        opacity: 0.3;
    }
}

/* ===== VALUES SECTION ===== */
.values {
    padding: 6rem 0;
    background-color: var(--color-off-white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.value-card {
    text-align: center;
    padding: 3rem 2rem;
    background-color: var(--color-white);
    border-radius: 8px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-small);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-large);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    border-radius: 50%;
    color: var(--color-white);
}

.value-icon svg {
    width: 40px;
    height: 40px;
}

.value-card h3 {
    font-size: 1.75rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.value-card p {
    color: var(--color-gray);
    line-height: 1.8;
}

/* ===== ABOUT PREVIEW SECTION ===== */
.about-preview {
    padding: 6rem 0;
}

.about-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.section-label {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--color-gold);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.75rem;
    color: var(--color-primary);
    margin-bottom: 2rem;
}

.section-description {
    color: var(--color-gray);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

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

.image-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.preview-image,
.story-img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-sizing: border-box;
}

.preview-image {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.stats-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    z-index: 2;
}

.stat-item {
    text-align: center;
    color: var(--color-white);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== FEATURED PROJECTS SECTION ===== */
.featured-projects {
    padding: 6rem 0;
    background-color: var(--color-off-white);
}

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

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

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Featured projects section with 2 cards - make them symmetric */
.featured-projects .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 1000px;
    margin: 0 auto;
    gap: 3rem;
}

.project-card {
    background-color: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-small);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-large);
}

.project-image {
    position: relative;
    height: 280px;
    min-height: 280px;
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
    overflow: hidden;
    flex-shrink: 0;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition-smooth);
    display: block;
}

.project-card:hover .card-image {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(220, 38, 38, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 1;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-link {
    padding: 1rem 2rem;
    background-color: var(--color-white);
    color: var(--color-primary);
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition-smooth);
    white-space: nowrap;
    text-align: center;
}

.project-link:hover {
    background-color: var(--color-gold);
    color: var(--color-white);
}

.project-info {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.project-info h3 {
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    font-size: 1.75rem;
    line-height: 1.2;
    min-height: 2.5rem;
}

.project-location {
    color: var(--color-gold);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-description {
    color: var(--color-gray);
    font-size: 0.95rem;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 0;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-choose {
    padding: 6rem 0;
}

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

.advantage-item {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background-color: var(--color-off-white);
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.advantage-item:hover {
    background-color: var(--color-white);
    box-shadow: var(--shadow-medium);
}

.advantage-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-gold);
    opacity: 0.3;
    line-height: 1;
}

.advantage-item h3 {
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.advantage-item p {
    color: var(--color-gray);
    line-height: 1.8;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    text-align: center;
    color: var(--color-white);
}

.cta-content h2 {
    color: var(--color-white);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: var(--color-off-white);
    margin-bottom: 2.5rem;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

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

.footer-logo-image {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: var(--transition-smooth);
}

.footer-logo-image:hover {
    opacity: 1;
}

.footer-description {
    color: var(--color-light-gray);
    line-height: 1.8;
}

.footer-col h4 {
    color: var(--color-gold);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--color-light-gray);
    transition: var(--transition-smooth);
}

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--color-light-gray);
}

.footer-contact svg {
    width: 20px;
    height: 20px;
    color: var(--color-gold);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact a {
    color: var(--color-light-gray);
    transition: var(--transition-smooth);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-gray);
    font-size: 0.9rem;
}

/* ===== PAGE HEADER ===== */
.page-header {
    padding: 12rem 0 6rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255,255,255,0.03) 10px, rgba(255,255,255,0.03) 20px);
}

.page-title {
    color: var(--color-white);
    font-size: 4rem;
    margin-bottom: 1rem;
    position: relative;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--color-off-white);
    position: relative;
}

.page-header-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.page-header-text {
    flex: 1;
    text-align: left;
}

.page-header-image {
    flex: 1;
    max-width: 600px;
}

.header-hero-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    box-sizing: border-box;
}

@media (max-width: 968px) {
    .page-header-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .page-header-text {
        text-align: center;
    }
    
    .page-header-image {
        max-width: 100%;
    }
}

/* ===== VIDEO HERO BANNER ===== */
.hero-banner {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    max-width: none;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
    z-index: 0;
    overflow: hidden;
}

.hero-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(220, 38, 38, 0.3) 0%, rgba(153, 27, 27, 0.4) 100%);
    z-index: 1;
}

.hero-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
    animation: fadeInUp 1s ease;
}

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

.hero-banner-subtitle {
    font-size: 1.5rem;
    color: var(--color-gold);
    font-weight: 500;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* ===== ABOUT PAGE STYLES ===== */
.company-story {
    padding: 6rem 0;
}

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

.story-image {
    position: relative;
}

.image-frame {
    position: relative;
}

.image-frame::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--color-gold);
    border-radius: 8px;
    z-index: -1;
}

/* ===== VIDEO SHOWCASE SECTION ===== */
.video-showcase {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--color-off-white) 0%, var(--color-white) 100%);
}

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

.video-showcase-text {
    padding-right: 2rem;
}

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

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
}

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

.video-showcase-player {
    position: relative;
}

.video-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    background-color: var(--color-black);
}

.showcase-video {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-sizing: border-box;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
    border-radius: 12px;
}

@media (max-width: 968px) {
    .video-showcase-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .video-showcase-text {
        padding-right: 0;
        text-align: center;
    }
    
    .video-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.vision-mission {
    padding: 6rem 0;
    background-color: var(--color-off-white);
}

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

.vm-card {
    padding: 3rem;
    background-color: var(--color-white);
    border-radius: 8px;
    box-shadow: var(--shadow-small);
    transition: var(--transition-smooth);
}

.vm-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
}

.vm-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    border-radius: 50%;
    color: var(--color-white);
}

.vm-icon svg {
    width: 35px;
    height: 35px;
}

.vm-card h3 {
    color: var(--color-primary);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.vm-card p {
    color: var(--color-gray);
    line-height: 1.9;
}

.core-values {
    padding: 6rem 0;
}

.values-detailed {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.value-detailed-item {
    padding: 3rem;
    background-color: var(--color-off-white);
    border-radius: 8px;
    border-left: 5px solid var(--color-primary);
    transition: var(--transition-smooth);
}

.value-detailed-item:hover {
    background-color: var(--color-white);
    box-shadow: var(--shadow-medium);
    border-left-width: 8px;
}

.value-detailed-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.value-detailed-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    border-radius: 50%;
    color: var(--color-white);
    flex-shrink: 0;
}

.value-detailed-icon svg {
    width: 30px;
    height: 30px;
}

.value-detailed-item h3 {
    color: var(--color-primary);
    font-size: 2rem;
    letter-spacing: 2px;
}

.value-detailed-item p {
    color: var(--color-gray);
    line-height: 1.9;
    font-size: 1.05rem;
}

.why-choose-about {
    padding: 6rem 0;
    background-color: var(--color-off-white);
}

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

.choose-item {
    padding: 2.5rem;
    background-color: var(--color-white);
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.choose-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.choose-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-gold);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.choose-item h3 {
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.choose-item p {
    color: var(--color-gray);
    line-height: 1.8;
}

.team-section {
    padding: 6rem 0;
}

.team-subtitle {
    font-size: 2rem;
    color: var(--color-primary);
    margin: 3rem 0 2rem;
    text-align: center;
    font-weight: 600;
}

.team-subtitle:first-of-type {
    margin-top: 0;
}

/* Founders Section */
.team-founders {
    margin-bottom: 4rem;
}

.founders-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
    background-color: var(--color-white);
    border-radius: 8px;
    box-shadow: var(--shadow-medium);
    text-align: center;
}

.founders-content h4 {
    font-size: 1.75rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.founders-role {
    color: var(--color-gold);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.founders-description {
    color: var(--color-gray);
    line-height: 1.9;
    font-size: 1.05rem;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.team-member-card {
    padding: 2.5rem;
    background-color: var(--color-white);
    border-radius: 8px;
    box-shadow: var(--shadow-small);
    text-align: center;
    transition: var(--transition-smooth);
}

.team-member-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
}

.team-member-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    border-radius: 50%;
    color: var(--color-white);
}

.team-member-icon svg {
    width: 40px;
    height: 40px;
}

.team-member-card h4 {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--color-gold);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.team-description {
    color: var(--color-gray);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Extended Team Section */
.team-extended {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 2px solid var(--color-light-gray);
}

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

.extended-team-category {
    padding: 2rem;
    background-color: var(--color-off-white);
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.extended-team-category:hover {
    background-color: var(--color-white);
    box-shadow: var(--shadow-small);
    transform: translateY(-3px);
}

.extended-team-category h4 {
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    font-weight: 600;
    border-bottom: 2px solid var(--color-gold);
    padding-bottom: 0.75rem;
}

.team-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.team-list li {
    color: var(--color-gray);
    line-height: 2.2;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.team-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-weight: bold;
    font-size: 1.2rem;
}

/* ===== PROJECTS PAGE STYLES ===== */
.project-filter {
    padding: 3rem 0;
    background-color: var(--color-off-white);
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background-color: var(--color-white);
    color: var(--color-dark-gray);
    border: 2px solid transparent;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    white-space: nowrap;
    flex-shrink: 0;
    box-sizing: border-box;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.projects-section {
    padding: 6rem 0;
}

.projects-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.project-showcase-item {
    background-color: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-small);
    transition: var(--transition-smooth);
}

.project-showcase-item:hover {
    box-shadow: var(--shadow-large);
}

.project-showcase-image {
    position: relative;
    height: 300px;
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
    overflow: hidden;
}

.showcase-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.project-showcase-item:hover .showcase-bg-image {
    transform: scale(1.05);
}

.project-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.5rem 1.5rem;
    background-color: var(--color-gold);
    color: var(--color-white);
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.project-badge.ongoing {
    background-color: var(--color-primary);
}

.project-showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    z-index: 1;
}

.project-quick-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-white);
    font-size: 0.9rem;
}

.project-type {
    font-weight: 600;
    color: var(--color-gold);
}

.project-showcase-content {
    padding: 2.5rem;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
}

.project-showcase-content h3 {
    color: var(--color-primary);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.project-showcase-content .project-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-gold);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.project-showcase-content .project-location svg {
    width: 18px;
    height: 18px;
}

.project-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.5rem 0;
    width: 100%;
    max-width: 100%;
}

.feature-tag {
    padding: 0.5rem 1rem;
    background-color: var(--color-off-white);
    color: var(--color-primary);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 4px;
    white-space: nowrap;
    flex-shrink: 0;
    box-sizing: border-box;
}

.projects-stats {
    padding: 6rem 0;
    background-color: var(--color-off-white);
}

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

.stat-card {
    text-align: center;
    padding: 3rem 2rem;
    background-color: var(--color-white);
    border-radius: 8px;
    box-shadow: var(--shadow-small);
    transition: var(--transition-smooth);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.stat-card .stat-number {
    font-size: 3.5rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.stat-card .stat-label {
    color: var(--color-gray);
    font-size: 1rem;
    text-transform: none;
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-section {
    padding: 6rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.contact-intro {
    margin-bottom: 3rem;
}

.contact-intro h2 {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.contact-intro p {
    color: var(--color-gray);
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-detail-item {
    display: flex;
    gap: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-detail-content h4 {
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.contact-detail-content p {
    color: var(--color-gray);
    line-height: 1.8;
}

.contact-detail-content a {
    color: var(--color-primary);
    font-weight: 600;
}

.contact-detail-content a:hover {
    color: var(--color-gold);
}

.contact-form-wrapper {
    background-color: var(--color-off-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow-small);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.contact-form h3 {
    color: var(--color-primary);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: var(--color-gray);
    margin-bottom: 2.5rem;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--color-dark-gray);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    max-width: 100%;
    padding: 1rem;
    border: 2px solid var(--color-light-gray);
    border-radius: 4px;
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--color-dark-gray);
    transition: var(--transition-smooth);
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.form-group textarea {
    resize: vertical;
}

.form-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 4px;
    display: none;
}

.form-message.success {
    display: block;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    display: block;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.visit-section {
    padding: 6rem 0;
    background-color: var(--color-off-white);
}

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

.visit-card {
    text-align: center;
    padding: 3rem 2rem;
    background-color: var(--color-white);
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.visit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.visit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
}

.visit-icon svg {
    width: 35px;
    height: 35px;
}

.visit-card h3 {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.visit-card p {
    color: var(--color-gray);
    line-height: 1.8;
}

.map-section {
    padding: 6rem 0;
}

.map-placeholder {
    width: 100%;
    max-width: 100%;
    height: 400px;
    background-color: var(--color-light-gray);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    margin-top: 3rem;
    box-sizing: border-box;
}

.map-placeholder iframe {
    width: 100%;
    max-width: 100%;
    height: 100%;
    border: 0;
    box-sizing: border-box;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
}

.map-overlay p {
    color: var(--color-white);
    font-size: 1.5rem;
    font-weight: 600;
}

/* ===== ANIMATIONS ===== */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    h1 { font-size: 3rem; }
    h2 { font-size: 2.25rem; }
    h3 { font-size: 1.75rem; }
    
    .values-grid,
    .projects-grid,
    .choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    /* Featured projects - keep 2 columns on tablet */
    .featured-projects .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
        max-width: 1000px;
    }
    
    .about-preview-grid,
    .story-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .extended-team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .navbar .container {
        padding: 0 1rem;
    }
    
    .nav-wrapper {
        padding: 1rem 0;
        gap: 0.5rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--color-white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-large);
        transition: var(--transition-smooth);
        gap: 0;
        overflow-y: auto;
    }
    
    .nav-menu a {
        color: var(--color-dark-gray);
        text-shadow: none;
    }
    
    .nav-menu a::after {
        background-color: var(--color-primary);
    }
    
    .nav-menu a:hover,
    .nav-menu a.active {
        color: var(--color-primary);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
        padding: 1rem 0;
        border-bottom: 1px solid var(--color-light-gray);
    }
    
    .nav-toggle {
        display: flex;
        margin-right: 0;
        padding: 0.4rem;
        min-width: 30px;
    }
    
    .logo {
        max-width: calc(100% - 40px);
        min-width: 0;
    }
    
    .logo-image {
        height: 90px;
        max-width: 100%;
        width: auto;
    }
    
    .hero {
        height: 80vh;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-banner {
        height: 50vh;
        min-height: 400px;
    }
    
    .hero-banner-title {
        font-size: 2.5rem;
    }
    
    .hero-banner-subtitle {
        font-size: 1.1rem;
    }
    
    .values-grid,
    .projects-grid,
    .advantages-grid,
    .vm-grid,
    .choose-grid,
    .stats-grid,
    .visit-cards,
    .projects-showcase,
    .team-grid,
    .extended-team-grid {
        grid-template-columns: 1fr;
    }
    
    /* Featured projects - single column on mobile */
    .featured-projects .projects-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .logo-image {
        height: 75px;
    }
    
    .hero {
        height: 70vh;
        min-height: 450px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-banner {
        height: 40vh;
        min-height: 350px;
    }
    
    .hero-banner-title {
        font-size: 2rem;
    }
    
    .hero-banner-subtitle {
        font-size: 1rem;
    }
    
    .page-header {
        padding: 8rem 0 4rem;
    }
    
    .section-header,
    .about-preview,
    .featured-projects,
    .why-choose,
    .cta-section,
    .contact-section,
    .projects-section,
    .values,
    .company-story,
    .vision-mission,
    .core-values,
    .visit-section,
    .map-section,
    .projects-stats,
    .team-section {
        padding: 4rem 0;
    }
    
    .stats-overlay {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .footer-logo-image {
        height: 40px;
    }
    
    .team-subtitle {
        font-size: 1.5rem;
    }
    
    .founders-card {
        padding: 2rem;
    }
    
    .team-member-card {
        padding: 2rem;
    }
    
    .extended-team-category {
        padding: 1.5rem;
    }
}

/* ===================================
   COMPREHENSIVE RESPONSIVE DESIGN
   =================================== */

/* ===== TABLET LANDSCAPE (769px - 1024px) ===== */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
    
    h1 { font-size: 3rem; }
    h2 { font-size: 2.5rem; }
    h3 { font-size: 1.875rem; }
    h4 { font-size: 1.375rem; }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
    }
    
    .page-title {
        font-size: 3rem;
    }
    
    .page-subtitle {
        font-size: 1.15rem;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .video-showcase-content {
        gap: 3rem;
    }
    
    .video-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .contact-grid {
        gap: 3rem;
    }
    
    .contact-form-wrapper {
        padding: 2.5rem;
    }
    
    .visit-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .extended-team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

/* ===== TABLET PORTRAIT (481px - 768px) ===== */
@media (min-width: 481px) and (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.625rem; }
    h4 { font-size: 1.25rem; }
    
    .logo-image {
        height: 90px;
    }
    
    .hero {
        height: 85vh;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2.75rem;
        margin-bottom: 1.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-banner {
        height: 55vh;
        min-height: 450px;
    }
    
    .hero-banner-title {
        font-size: 2.75rem;
    }
    
    .hero-banner-subtitle {
        font-size: 1.1rem;
    }
    
    .page-header {
        padding: 10rem 0 5rem;
    }
    
    .page-title {
        font-size: 2.75rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .page-header-content {
        gap: 3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .value-card {
        padding: 2.5rem 1.5rem;
    }
    
    .value-icon {
        width: 70px;
        height: 70px;
    }
    
    .value-icon svg {
        width: 35px;
        height: 35px;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .story-content {
        text-align: center;
    }
    
    .vm-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .vm-card {
        padding: 2.5rem;
    }
    
    .values-detailed {
        gap: 2rem;
    }
    
    .value-detailed-item {
        padding: 2.5rem;
    }
    
    .value-detailed-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .choose-item {
        padding: 2rem;
    }
    
    .video-showcase {
        padding: 5rem 0;
    }
    
    .video-showcase-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .video-showcase-text {
        padding-right: 0;
        text-align: center;
    }
    
    .video-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        margin-top: 2.5rem;
        padding-top: 2.5rem;
    }
    
    .stat-number {
        font-size: 2.25rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .contact-section {
        padding: 5rem 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-form-wrapper {
        padding: 2.5rem;
    }
    
    .contact-detail-item {
        gap: 1.25rem;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
    }
    
    .contact-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .visit-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .visit-card {
        padding: 2.5rem 1.5rem;
    }
    
    .team-section {
        padding: 5rem 0;
    }
    
    .team-subtitle {
        font-size: 1.75rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-member-card {
        padding: 2rem;
    }
    
    .founders-card {
        padding: 2.5rem;
    }
    
    .extended-team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .extended-team-category {
        padding: 1.75rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .footer-contact li {
        font-size: 0.9rem;
    }
    
    .cta-section {
        padding: 5rem 0;
    }
    
    .cta-content h2 {
        font-size: 2.25rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ===== MOBILE LANDSCAPE & SMALL TABLETS (481px - 600px) ===== */
@media (min-width: 481px) and (max-width: 600px) {
    .container {
        padding: 0 1.25rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .choose-grid {
        grid-template-columns: 1fr;
    }
    
    .visit-cards {
        grid-template-columns: 1fr;
    }
    
    .video-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
}

/* ===== MOBILE PORTRAIT (up to 480px) - Enhanced ===== */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .navbar .container {
        padding: 0 1rem;
    }
    
    /* Typography */
    h1 { font-size: 1.875rem; }
    h2 { font-size: 1.625rem; }
    h3 { font-size: 1.375rem; }
    h4 { font-size: 1.125rem; }
    h5 { font-size: 1rem; }
    h6 { font-size: 0.9rem; }
    
    body {
        font-size: 15px;
    }
    
    /* Navigation */
    .navbar .container {
        padding: 0 0.75rem;
    }
    
    .nav-wrapper {
        padding: 0.75rem 0;
        gap: 0.5rem;
    }
    
    .logo {
        max-width: calc(100% - 38px);
        min-width: 0;
    }
    
    .logo-image {
        height: 70px;
        max-width: 100%;
        width: auto;
    }
    
    .nav-toggle {
        padding: 0.4rem;
        margin-right: 0;
        min-width: 28px;
    }
    
    .nav-toggle span {
        width: 22px;
        height: 2.5px;
    }
    
    .nav-menu {
        top: 70px;
        height: calc(100vh - 70px);
        padding: 1.5rem;
    }
    
    /* Hero Section */
    .hero {
        height: 70vh;
        min-height: 450px;
    }
    
    .hero-title {
        font-size: 1.875rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        padding: 0 1rem;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .scroll-indicator {
        bottom: 1.5rem;
        width: 25px;
        height: 40px;
    }
    
    /* Hero Banner */
    .hero-banner {
        height: 40vh;
        min-height: 350px;
    }
    
    .hero-banner-title {
        font-size: 1.875rem;
        padding: 0 1rem;
    }
    
    .hero-banner-subtitle {
        font-size: 0.95rem;
        padding: 0 1rem;
    }
    
    /* Page Header */
    .page-header {
        padding: 7rem 0 3rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .page-header-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .page-header-text {
        text-align: center;
    }
    
    .header-hero-image {
        border-radius: 8px;
    }
    
    /* Section Headers */
    .section-header {
        text-align: center;
        margin-bottom: 2.5rem;
    }
    
    .section-label {
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    /* Buttons */
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
    }
    
    .btn-small {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }
    
    /* Values Section */
    .values {
        padding: 4rem 0;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-card {
        padding: 2rem 1.5rem;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.5rem;
    }
    
    .value-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .value-card h3 {
        font-size: 1.25rem;
    }
    
    .value-card p {
        font-size: 0.9rem;
    }
    
    /* Company Story */
    .company-story {
        padding: 4rem 0;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-content {
        text-align: center;
    }
    
    .section-description {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .image-frame::before {
        top: -15px;
        left: -15px;
    }
    
    /* Vision & Mission */
    .vision-mission {
        padding: 4rem 0;
    }
    
    .vm-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .vm-card {
        padding: 2rem 1.5rem;
    }
    
    .vm-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.5rem;
    }
    
    .vm-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .vm-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .vm-card p {
        font-size: 0.9rem;
    }
    
    /* Core Values */
    .core-values {
        padding: 4rem 0;
    }
    
    .values-detailed {
        gap: 1.5rem;
    }
    
    .value-detailed-item {
        padding: 2rem 1.5rem;
    }
    
    .value-detailed-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .value-detailed-icon {
        width: 50px;
        height: 50px;
    }
    
    .value-detailed-icon svg {
        width: 25px;
        height: 25px;
    }
    
    .value-detailed-item h3 {
        font-size: 1.5rem;
    }
    
    .value-detailed-item p {
        font-size: 0.9rem;
    }
    
    /* Why Choose */
    .why-choose-about {
        padding: 4rem 0;
    }
    
    .choose-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .choose-item {
        padding: 2rem 1.5rem;
    }
    
    .choose-number {
        font-size: 2rem;
    }
    
    .choose-item h3 {
        font-size: 1.25rem;
    }
    
    .choose-item p {
        font-size: 0.9rem;
    }
    
    /* Video Showcase */
    .video-showcase {
        padding: 4rem 0;
    }
    
    .video-showcase-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .video-showcase-text {
        padding-right: 0;
        text-align: center;
    }
    
    .video-stats {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-top: 2rem;
        padding-top: 2rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .video-wrapper {
        border-radius: 8px;
    }
    
    /* Contact Section */
    .contact-section {
        padding: 4rem 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .contact-intro {
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .contact-intro h2 {
        font-size: 1.75rem;
    }
    
    .contact-details {
        gap: 2rem;
    }
    
    .contact-detail-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto;
    }
    
    .contact-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .contact-detail-content h4 {
        font-size: 1.125rem;
    }
    
    .contact-detail-content p {
        font-size: 0.9rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .contact-form h3 {
        font-size: 1.5rem;
    }
    
    .form-subtitle {
        font-size: 0.9rem;
    }
    
    .form-group {
        margin-bottom: 1.25rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.875rem;
        font-size: 0.9rem;
    }
    
    /* Visit Section */
    .visit-section {
        padding: 4rem 0;
    }
    
    .visit-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .visit-card {
        padding: 2rem 1.5rem;
    }
    
    .visit-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.5rem;
    }
    
    .visit-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .visit-card h3 {
        font-size: 1.25rem;
    }
    
    .visit-card p {
        font-size: 0.9rem;
    }
    
    /* Map Section */
    .map-section {
        padding: 4rem 0;
    }
    
    .map-placeholder iframe {
        height: 300px;
        border-radius: 6px;
    }
    
    /* Team Section */
    .team-section {
        padding: 4rem 0;
    }
    
    .team-subtitle {
        font-size: 1.5rem;
        margin: 2rem 0 1.5rem;
    }
    
    .team-founders {
        margin-bottom: 3rem;
    }
    
    .founders-card {
        padding: 2rem 1.5rem;
    }
    
    .founders-content h4 {
        font-size: 1.5rem;
    }
    
    .founders-role {
        font-size: 1rem;
    }
    
    .founders-description {
        font-size: 0.9rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .team-member-card {
        padding: 2rem 1.5rem;
    }
    
    .team-member-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.25rem;
    }
    
    .team-member-icon svg {
        width: 35px;
        height: 35px;
    }
    
    .team-member-card h4 {
        font-size: 1.25rem;
    }
    
    .team-role {
        font-size: 0.95rem;
    }
    
    .team-description {
        font-size: 0.9rem;
    }
    
    .team-extended {
        margin-top: 3rem;
    }
    
    .extended-team-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .extended-team-category {
        padding: 1.5rem;
    }
    
    .extended-team-category h4 {
        font-size: 1.125rem;
        margin-bottom: 1rem;
    }
    
    .team-list {
        font-size: 0.9rem;
    }
    
    /* CTA Section */
    .cta-section {
        padding: 4rem 0;
    }
    
    .cta-content {
        padding: 0 1rem;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .cta-content p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    /* Footer */
    .footer {
        padding: 4rem 0 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-col {
        text-align: center;
    }
    
    .footer-logo-image {
        height: 50px;
        margin: 0 auto 1rem;
    }
    
    .footer-description {
        font-size: 0.9rem;
    }
    
    .footer-col h4 {
        font-size: 1.125rem;
        margin-bottom: 1rem;
    }
    
    .footer-links li {
        margin-bottom: 0.75rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
    
    .footer-contact li {
        font-size: 0.85rem;
        margin-bottom: 1rem;
        justify-content: center;
    }
    
    .footer-contact svg {
        width: 18px;
        height: 18px;
    }
    
    .footer-bottom {
        margin-top: 2rem;
        text-align: center;
    }
    
    .footer-bottom p {
        font-size: 0.85rem;
    }
    
    /* Projects Section */
    .projects-section {
        padding: 4rem 0;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .project-card {
        padding: 1.5rem;
    }
    
    .project-card h3 {
        font-size: 1.25rem;
    }
    
    .project-card p {
        font-size: 0.9rem;
    }
    
    /* Stats Section */
    .stats-overlay {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 2rem 1rem;
    }
    
    .stat-card {
        padding: 2rem 1rem;
    }
    
    .stat-card .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-card .stat-label {
        font-size: 0.9rem;
    }
    
    /* About Preview */
    .about-preview {
        padding: 4rem 0;
    }
    
    .about-preview-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Featured Projects */
    .featured-projects {
        padding: 4rem 0;
    }
    
    .projects-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ===== EXTRA SMALL MOBILE (up to 360px) ===== */
@media (max-width: 360px) {
    .container {
        padding: 0 0.75rem;
    }
    
    h1 { font-size: 1.625rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
    
    .hero-title {
        font-size: 1.625rem;
    }
    
    .page-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .navbar .container {
        padding: 0 0.5rem;
    }
    
    .logo {
        max-width: calc(100% - 35px);
        min-width: 0;
    }
    
    .logo-image {
        height: 60px;
        max-width: 100%;
        width: auto;
    }
    
    .nav-toggle {
        padding: 0.3rem;
        min-width: 25px;
    }
    
    .nav-toggle span {
        width: 20px;
        height: 2px;
    }
    
    .value-card,
    .vm-card,
    .choose-item,
    .contact-form-wrapper,
    .visit-card,
    .team-member-card {
        padding: 1.5rem 1rem;
    }
}

/* ===== LARGE DESKTOP (1400px+) ===== */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    
    h1 { font-size: 4rem; }
    h2 { font-size: 3rem; }
    
    .hero-title {
        font-size: 4.5rem;
    }
    
    .page-title {
        font-size: 4rem;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .navbar,
    .hero-cta,
    .scroll-indicator,
    .btn,
    .footer {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
    }
}
