/* Premium Industrial Dark Aesthetic */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;500;700;800;900&display=swap');

:root {
    /* Ultra Premium Royal White Palette */
    --bg-dark: #ffffff; /* Light background */
    --bg-surface: #ffffff; /* Pure white surface */
    --bg-surface-light: #ffffff;
    
    /* Vibrant Premium Accents */
    --primary-color: #10223d; /* Logo Deep Navy Blue */
    --secondary-color: #f28c28; /* Logo Vibrant Orange */
    --accent-color: #e67e22; /* Deeper Orange for hover */
    --accent-blue: #1e3a8a; /* Sleek vibrant blue */
    
    /* Text */
    --text-color: #1e293b;
    --text-light: #475569;
    --text-muted: #64748b;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Effects */
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(0, 0, 0, 0.05);
    --nav-height: 90px;
    --border-radius: 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.8;
    background-color: var(--bg-dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    letter-spacing: 0.01em;
}

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

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

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: -2rem auto 3rem auto;
    font-size: 1.1rem;
    color: var(--text-light);
}

/* =================================== */
/* == BUTTONS & CTAS == */
/* =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    border-radius: 0; /* Softer edges */
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    text-transform: none;
    letter-spacing: 1.5px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--secondary-color);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(197, 160, 89, 0.2);
    border: none;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--accent-color);
    z-index: -1;
    transition: opacity 0.4s ease;
    opacity: 0;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(197, 160, 89, 0.4);
}

.btn-outline {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.2);
    color: var(--primary-color);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

/* =================================== */
/* == HEADER & NAVBAR == */
/* =================================== */
.top-bar {
    background-color: #ffffff;
    color: var(--text-color);
    padding: 10px 0;
    font-size: 13px;
    font-weight: 500;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left span, .top-bar-right span {
    margin-right: 20px;
}

.top-bar i {
    margin-right: 8px;
    color: var(--secondary-color);
}

.top-bar a {
    color: #ffffff;
    background-color: var(--secondary-color);
    padding: 4px 15px;
    border-radius: 0;
    font-weight: 600;
    transition: var(--transition);
    text-transform: none;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.top-bar a:hover {
    background-color: #ffffff;
    color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    height: 95px;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

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

.logo h1 {
    margin: 0;
    font-size: 26px;
    color: var(--primary-color);
    letter-spacing: -0.5px;
    text-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li {
    margin: 0 18px;
}

.nav-links a {
    color: var(--text-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: none;
    font-family: var(--font-heading);
    position: relative;
    padding: 10px 0;
    letter-spacing: 1px;
    transition: var(--transition);
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 3px;
    background: var(--secondary-color);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.nav-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
    box-shadow: 0 0 10px var(--secondary-color);
}

@keyframes electricFlow {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* =================================== */
/* == HERO SECTION == */
/* =================================== */
.page-title {
    position: relative;
    padding: 150px 0 120px 0;
    color: var(--text-color);
    background: url('../images/hero.png') center/cover fixed;
    background-color: #ffffff;
    text-align: left;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page-title::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0.9) 45%, rgba(255,255,255,0) 100%);
    z-index: 1;
}

.page-title .container {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0 20px;
    border: none;
    box-shadow: none;
    max-width: 1280px;
    position: relative;
    z-index: 2;
}

.page-title h1 {
    color: var(--primary-color);
    font-size: 5rem;
    font-weight: 800;
    letter-spacing: -1px;
    text-shadow: none;
    margin-bottom: 25px;
    animation: fadeInUp 1s ease-out forwards;
    line-height: 1.1;
    max-width: 800px;
}

.page-title p {
    font-size: 1.5rem;
    max-width: 600px;
    margin: 0 0 40px 0;
    color: var(--text-color);
    font-weight: 500;
    animation: fadeInUp 1.2s ease-out forwards;
    line-height: 1.6;
}

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

/* =================================== */
/* == PRODUCTS / SERVICES == */
/* =================================== */
.products {
    background-color: var(--bg-surface);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.product-card {
    background: var(--bg-surface);
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(212, 175, 55, 0.05), transparent);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
    pointer-events: none;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border-color: rgba(0,0,0,0.08);
}

.img-wrapper {
    overflow: hidden;
    position: relative;
}

.product-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-card:hover img {
    transform: scale(1.15);
}

.product-card-content {
    padding: 30px;
    position: relative;
    z-index: 2;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-card h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.product-card p {
    color: var(--text-light);
    flex-grow: 1;
}

.learn-more {
    color: var(--secondary-color);
    font-weight: 600;
    display: inline-block;
    margin-top: 20px;
    font-size: 1.05rem;
    text-transform: none;
    letter-spacing: 1px;
    position: relative;
}

.learn-more:after {
    content: ' \2192'; /* Right arrow unicode */
    transition: margin-left 0.3s;
    margin-left: 5px;
}

.learn-more:hover:after {
    margin-left: 12px;
}
.learn-more:hover {
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* =================================== */
/* == ABOUT & STATS == */
/* =================================== */
.about-section {
    background-color: var(--bg-dark);
}

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

.about-img img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid var(--glass-border);
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.stat-card {
    background: var(--bg-surface);
    padding: 40px 25px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
    text-align: center;
}

.stat-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0,0,0,0.08);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
    background: var(--bg-surface);
}

.stat-value {
    font-size: 36px;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1.2;
    font-family: var(--font-heading);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.stat-label {
    font-size: 16px;
    color: var(--text-light);
    margin-top: 8px;
    font-weight: 500;
}

/* =================================== */
/* == FOOTER == */
/* =================================== */
.site-footer {
    background-color: #ffffff;
    color: var(--text-color);
    padding: 5rem 0 2rem 0;
    font-size: 0.95rem;
    border-top: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

/* Animated Structure Grid Background */
.site-footer::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background-image: 
        linear-gradient(rgba(10, 25, 47, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10, 25, 47, 0.04) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    animation: gridPan 30s linear infinite;
    pointer-events: none;
    transform: rotate(-15deg);
}

@keyframes gridPan {
    0% { transform: rotate(-15deg) translateY(0); }
    100% { transform: rotate(-15deg) translateY(-50px); }
}

.site-footer .container {
    position: relative;
    z-index: 1;
}

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

.footer-column h4 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 1.3rem;
    letter-spacing: 0.5px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: inline-block;
    font-family: var(--font-heading);
}

.footer-column p, .footer-column li {
    margin-bottom: 15px;
    color: var(--text-light);
    line-height: 1.8;
}

.footer-column ul {
    list-style: none;
}

.footer-column a {
    color: var(--text-light);
    display: inline-block;
}

.footer-column a:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.footer-contact-item {
    display: flex;
    margin-bottom: 15px;
}

.footer-contact-item i {
    margin-right: 15px;
    margin-top: 5px;
    color: var(--secondary-color);
    font-size: 18px;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    border-radius: 50%;
    margin-right: 10px;
    color: var(--primary-color);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.social-links a:hover {
    background-color: var(--secondary-color);
    color: var(--bg-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 2rem;
    color: var(--text-light);
}

/* Page Header for Inner Pages */
.inner-page-header {
    background: linear-gradient(rgba(13, 27, 42, 0.9), rgba(13, 27, 42, 0.9)), url('https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
    padding: 80px 0;
    text-align: center;
    color: #ffffff;
}

.inner-page-header h1 {
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 10px;
}

.inner-page-header p {
    color: #d1e2f3;
    font-size: 1.1rem;
}

/* Clean Form Styling */
.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 0;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(11, 34, 66, 0.1);
}

/* =================================== */
/* == NAVIGATION & DROPDOWNS == */
/* =================================== */
.menu-toggle {
    display: none;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg-surface-light);
    backdrop-filter: blur(15px);
    min-width: 250px;
    box-shadow: 0px 10px 30px rgba(0,0,0,0.5);
    z-index: 1000;
    border: 1px solid rgba(255,255,255,0.05);
    border-top: 3px solid var(--secondary-color);
    border-radius: 0;
    padding: 10px 0;
    transform: translateY(15px);
    transition: all 0.3s ease;
}

.dropdown-content li {
    margin: 0;
    display: block;
}

.dropdown-content li a {
    color: var(--text-color) !important;
    padding: 12px 20px !important;
    display: block;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.02);
}

.dropdown-content li:last-child a {
    border-bottom: none;
}

.dropdown-content li a::after {
    display: none;
}

.dropdown-content li a:hover {
    background-color: rgba(255,255,255,0.05);
    color: var(--secondary-color) !important;
    padding-left: 25px !important;
}

.dropdown:hover .dropdown-content {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 95px;
        right: -100%;
        width: 300px;
        max-width: 80%;
        height: calc(100vh - 95px);
        background-color: #ffffff;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        padding: 30px 20px;
        z-index: 999;
        transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        overflow-y: auto;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 10px 20px;
    }
    
    .dropdown-content {
        position: static;
        box-shadow: none;
        border-top: none;
        border-left: 2px solid var(--accent-color);
        margin-left: 15px;
        visibility: visible;
        opacity: 1;
        display: none;
        transform: translateY(0);
    }
    
    .dropdown:hover .dropdown-content {
        display: block;
    }

    .about-grid { grid-template-columns: 1fr; }
    .page-title h1 { font-size: 3rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .top-bar-right { display: none; }
}

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; }
}

/* =================================== */
/* == GALLERY & EVENTS STYLES == */
/* =================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(11, 34, 66, 0.9));
    color: var(--white);
    transition: bottom 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    bottom: 0;
}

.gallery-overlay h4 {
    color: var(--white);
    margin: 0;
    font-size: 1.1rem;
}

.gallery-overlay p {
    font-size: 0.9rem;
    margin-top: 5px;
    color: #e0e0e0;
}

/* Legal / Policy Page Styles */
.policy-content {
    background: var(--white);
    padding: 40px;
    border-radius: 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.policy-content h2 {
    font-size: 1.8rem;
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.policy-content p, .policy-content li {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.8;
}

/* =================================== */
/* == FEATURES / WHY CHOOSE US == */
/* =================================== */
.why-choose-us {
    background-color: var(--bg-surface-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: var(--bg-dark);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--secondary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: -1;
}

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

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px auto;
    background: rgba(242, 140, 40, 0.1);
    color: var(--secondary-color);
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--secondary-color);
    color: var(--bg-dark);
    transform: rotateY(360deg);
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* =================================== */
/* == FEATURED PROJECTS == */
/* =================================== */
.latest-projects {
    background-color: var(--bg-dark);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.project-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    background: var(--primary-color);
}

.project-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.6s;
}

.project-item:hover img {
    transform: scale(1.1);
    opacity: 0.4;
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px;
    background: linear-gradient(to top, rgba(16, 34, 61, 0.95) 10%, transparent);
    color: #ffffff;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.project-item:hover .project-overlay {
    transform: translateY(0);
    opacity: 1;
}

.project-overlay h4 {
    color: #ffffff;
    font-size: 1.4rem;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    transform: translateY(15px);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition-delay: 0.1s;
}

.project-item:hover .project-overlay h4 {
    transform: translateY(0);
}

/* =================================== */
/* == MOBILE & TABLET RESPONSIVENESS == */
/* =================================== */
@media (max-width: 992px) {
    section { padding: 4rem 0; }
    .page-title { padding: 120px 0 80px 0; min-height: 60vh; }
    .page-title h1 { font-size: 3.5rem; }
    .section-title { font-size: 2.4rem; }
}

@media (max-width: 768px) {
    section { padding: 3rem 0; }
    .page-title { padding: 100px 0 60px 0; min-height: 50vh; }
    .page-title h1 { font-size: 2.8rem; }
    .page-title p { font-size: 1.2rem; }
    .section-title { font-size: 2rem; margin-bottom: 2rem; }
    
    .product-grid, .projects-grid, .gallery-grid, .features-grid { 
        grid-template-columns: 1fr; 
    }
    
    .stat-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .btn { padding: 12px 28px; }
}

@media (max-width: 480px) {
    .page-title h1 { font-size: 2.2rem; }
    .page-title p { font-size: 1rem; }
    .stat-grid { grid-template-columns: 1fr; }
    .section-title { font-size: 1.8rem; }
}
