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

:root {
    --primary-color: #cb2e47;
    --secondary-color: #06084b;
    --accent-color: #e94560;
    --pink-accent: #cb2e47;
    --indigo: #06084b;
    --dark-bg: #06084b;
    --dark-gray: #0a0c5e;
    --light-gray: #f3f4f6;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --white: #ffffff;
    --success: #10b981;
    --warning: #f59e0b;
    --gradient-primary: linear-gradient(135deg, #06084b 0%, #cb2e47 100%);
    --gradient-secondary: linear-gradient(135deg, #cb2e47 0%, #e94560 100%);
    --gradient-dark: linear-gradient(135deg, #06084b 0%, #0a0c5e 100%);
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

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

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

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

ul {
    list-style: none;
}

/* ===================================
   TYPOGRAPHY
   =================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

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

p {
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--text-light);
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

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

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    position: fixed;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1240px;
    background: linear-gradient(135deg, rgba(6, 8, 75, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
   
    border-radius: 16px;
    padding: 5px 5px;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
   
}

.navbar.scrolled {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.7) 100%);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    top: 12px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(203, 46, 71, 0.12);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.logo img {
    height: 52px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: all 0.4s ease;
}

.navbar.scrolled .logo img {
    filter: none;
    height: 52px;
}

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

.nav-menu a {
    color: rgba(255, 255, 255, 0.88);
    font-weight: 600;
    font-size: 0.88rem;
    padding: 8px 15px;
    border-radius: 10px;
    transition: all 0.25s ease;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

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

.nav-menu a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.14);
}

.navbar.scrolled .nav-menu a:hover {
    color: var(--primary-color);
    background: rgba(203, 46, 71, 0.07);
}

.nav-menu a.active {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 3px 12px rgba(203, 46, 72, 0.071);
}

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

/* Contact CTA button in nav */
.nav-menu a.nav-cta {
    background: var(--white);
    color: var(--secondary-color) !important;
    font-weight: 700;
    padding: 9px 20px;
    border-radius: 10px;
    margin-left: 6px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.nav-menu a.nav-cta:hover {
    background: var(--primary-color) !important;
    color: var(--white) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(203, 46, 71, 0.4);
}

.navbar.scrolled .nav-menu a.nav-cta {
    background: var(--primary-color);
    color: var(--white) !important;
    box-shadow: 0 3px 12px rgba(203, 46, 71, 0.3);
}

.navbar.scrolled .nav-menu a.nav-cta:hover {
    background: var(--secondary-color) !important;
    color: var(--white) !important;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 8px;
    border-radius: 8px;
    transition: var(--transition);
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.12);
}

.navbar.scrolled .hamburger:hover {
    background: rgba(203, 46, 71, 0.08);
}

.hamburger span {
    width: 24px;
    height: 2.5px;
    background: var(--white);
    border-radius: 3px;
    display: block;
    transition: all 0.3s ease;
}

.navbar.scrolled .hamburger span {
    background: var(--secondary-color);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-dark);
    padding-top: 100px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(6, 8, 75, 0.313) 0%, rgba(203, 46, 72, 0.105) 100%), url('assets/hero.jpg') center/cover;
    opacity: 1;
}

.hero-content {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 0;
}

.hero-text {
    color: var(--white);
}

.hero-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 10px); }
}

/* ===================================
   SECTION HEADERS
   =================================== */
.section-header {
    margin-bottom: 50px;
}

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

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

.section-header h2 {
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* ===================================
   AWARDS SECTION
   =================================== */
.awards-section {
    padding: 100px 0;
    background: var(--light-gray);
}

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

.award-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

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

.award-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.award-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

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

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

.about-images {
    position: relative;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

.about-img-main {
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.about-img-small {
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    margin-top: 40px;
}

.core-values-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 30px 0;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.value-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* ===================================
   SERVICES SECTION
   =================================== */
.services-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link:hover {
    gap: 12px;
}

/* ===================================
   STATS SECTION
   =================================== */
.stats-section {
    padding: 80px 0;
    background: var(--gradient-dark);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #cb2e47, #e94560);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ===================================
   CLIENTS SECTION
   =================================== */
.clients-section {
    padding: 100px 0;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    align-items: center;
}

.client-logo {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.client-logo:hover {
    box-shadow: var(--shadow-lg);
    transform: scale(1.05);
}

.client-logo img {
    max-height: 80px;
    width: auto;
    filter: grayscale(100%);
    transition: var(--transition);
}

.client-logo:hover img {
    filter: grayscale(0%);
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
    padding: 100px 0;
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-logo {
    max-height: 50px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.footer-col h4 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.contact-info i {
    color: var(--primary-color);
    margin-top: 3px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-bottom .designed-by a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: underline;
    transition: var(--transition);
}

.footer-bottom .designed-by a:hover {
    color: var(--white);
}

/* ===================================
   PAGE HEADER (INNER PAGES)
   =================================== */
.page-header {
    position: relative;
    padding: 150px 0 100px;
    background: var(--gradient-dark);
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(6, 8, 75, 0.95) 0%, rgba(203, 46, 71, 0.85) 100%), url('assets/hero.jpg') center/cover;
    opacity: 1;
}

.page-header .container {
    position: relative;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* ===================================
   ABOUT PAGE
   =================================== */
.about-section,
.story-section,
.philosophy-section,
.values-section,
.founder-section,
.why-choose-section,
.impact-section,
.goals-section {
    padding: 100px 0;
}

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

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

.about-image img,
.story-image img {
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.story-section {
    background: var(--light-gray);
}

.highlight {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 20px;
    border-radius: 10px;
    font-weight: 500;
    margin-top: 20px;
}

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

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

.philosophy-card {
    text-align: center;
    padding: 40px;
}

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

.values-section {
    background: var(--light-gray);
}

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

.value-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 20px;
}

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

.founder-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

.founder-image {
    position: relative;
}

.founder-image img {
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.founder-quote {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 30px;
    border-radius: 10px;
    margin-top: 20px;
    position: relative;
}

.founder-quote i {
    font-size: 2rem;
    opacity: 0.3;
    margin-bottom: 10px;
}

.achievements {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 10px;
    margin-top: 30px;
}

.achievements h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.achievements-list {
    display: grid;
    gap: 12px;
}

.achievements-list li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.achievements-list i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.why-choose-section {
    background: var(--light-gray);
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.choose-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.choose-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.2;
    margin-bottom: 15px;
}

.impact-section {
    background: var(--gradient-dark);
    color: var(--white);
}

.impact-section .section-header {
    color: var(--white);
}

.impact-section .section-tag {
    color: var(--primary-color);
}

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

.impact-card {
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: var(--transition);
}

.impact-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

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

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

.goals-grid {
    display: grid;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.goal-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 25px;
    align-items: start;
    padding: 30px;
    background: var(--light-gray);
    border-radius: 10px;
    transition: var(--transition);
}

.goal-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateX(10px);
}

.goal-item i {
    font-size: 3rem;
    color: var(--primary-color);
}

.goal-item p {
    margin: 0;
    color: var(--text-light);
}

/* ===================================
   SERVICES PAGE
   =================================== */
.services-intro {
    padding: 80px 0 40px;
}

.service-detail {
    padding: 80px 0;
}

.service-detail.alt {
    background: var(--light-gray);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

.service-detail-grid.reverse {
    grid-template-columns: 1fr 1.2fr;
}

.service-badge {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 20px;
}

.service-features {
    margin-top: 40px;
}

.service-features h3 {
    margin-bottom: 25px;
    color: var(--primary-color);
}

.features-grid {
    display: grid;
    gap: 20px;
}

.feature-item {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 15px;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 8px;
}

.service-detail.alt .feature-item {
    background: var(--white);
}

.feature-item i {
    font-size: 2rem;
    color: var(--primary-color);
}

.feature-item h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.feature-item p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.service-detail-image img {
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 20px;
}

.service-cta {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.service-cta h4 {
    margin-bottom: 20px;
}

.products-list {
    display: grid;
    gap: 25px;
}

.product-category h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.product-category ul {
    padding-left: 20px;
}

.product-category li {
    margin-bottom: 8px;
    color: var(--text-light);
    list-style: disc;
}

.stationery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.stationery-category h4 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.stationery-category ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.stationery-category i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

.service-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.highlight-box {
    background: var(--light-gray);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.service-detail.alt .highlight-box {
    background: var(--white);
}

.highlight-box i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.highlight-box h5 {
    margin-bottom: 5px;
    font-size: 1rem;
}

.highlight-box p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.ppe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.ppe-item {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
}

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

.ppe-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.ppe-item span {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
}

.ppe-note {
    background: rgba(203, 46, 71, 0.1);
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.ppe-note i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.ppe-note p {
    margin: 0;
    font-weight: 500;
}

.construction-services {
    display: grid;
    gap: 20px;
    margin-top: 30px;
}

.construction-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 25px;
    align-items: start;
    padding: 30px 25px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.construction-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
    border-left-color: var(--primary-color);
    background: linear-gradient(to right, rgba(203, 46, 71, 0.02), var(--white));
}

.construction-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(203, 46, 71, 0.3);
}

.construction-content {
    flex: 1;
}

.construction-item h4 {
    margin-bottom: 10px;
    color: var(--text-dark);
    font-size: 1.2rem;
}

.construction-item p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.6;
}

.service-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.stat-box {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
}

.stat-box h4 {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.stat-box p {
    margin: 0;
    font-size: 0.95rem;
}

.references-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.reference-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.reference-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--light-gray);
}

.reference-header img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
}

.reference-logo-placeholder {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
}

.reference-header h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.reference-header p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.reference-contact p {
    margin-bottom: 8px;
    color: var(--text-dark);
}

.reference-contact i {
    color: var(--primary-color);
    margin-right: 5px;
}

/* ===================================
   CONTACT PAGE
   =================================== */
.contact-section {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-details {
    display: grid;
    gap: 30px;
    margin: 40px 0;
}

.contact-detail-item {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 20px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
}

.contact-text h4 {
    margin-bottom: 8px;
    color: var(--primary-color);
}

.contact-text p {
    margin-bottom: 5px;
    color: var(--text-light);
}

.contact-text a {
    color: var(--text-dark);
    transition: var(--transition);
}

.contact-text a:hover {
    color: var(--primary-color);
}

.business-hours {
    background: var(--light-gray);
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
}

.business-hours h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.business-hours ul li {
    margin-bottom: 10px;
    color: var(--text-dark);
}

.social-section h4 {
    margin-bottom: 20px;
}

.social-links-large {
    display: flex;
    gap: 15px;
}

.social-links-large a {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    transition: var(--transition);
}

.social-links-large a:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.contact-form-section {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.form-header {
    margin-bottom: 30px;
}

.form-header h3 {
    margin-bottom: 10px;
}

.form-header p {
    color: var(--text-light);
    margin: 0;
}

.contact-form {
    display: grid;
    gap: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

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

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

.checkbox-group {
    display: flex;
    align-items: start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
}

.checkbox-group label {
    margin: 0;
    font-weight: 400;
    font-size: 0.95rem;
}

.btn-large {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    border: none;
}

.form-message {
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    display: none;
}

.form-message.success {
    background: rgba(40, 167, 69, 0.1);
    color: var(--success);
    border: 2px solid var(--success);
    display: block;
}

.form-message.error {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 2px solid #dc3545;
    display: block;
}

.map-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.quick-contact-section {
    padding: 80px 0;
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.quick-contact-card {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

.quick-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

.quick-contact-card h3 {
    margin-bottom: 15px;
}

.quick-contact-card p {
    color: var(--text-light);
    margin-bottom: 25px;
}

.faq-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--light-gray);
}

.faq-question h4 {
    margin: 0;
    font-size: 1.1rem;
}

.faq-question i {
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 25px 20px;
    margin: 0;
    color: var(--text-light);
}

.newsletter-section {
    padding: 80px 0;
    background: var(--gradient-dark);
    color: var(--white);
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.newsletter-text h2 {
    margin-bottom: 10px;
}

.newsletter-text p {
    margin: 0;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: 2px solid var(--primary-color);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 968px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(300px, 85vw);
        height: 100vh;
        background: var(--secondary-color);
        flex-direction: column;
        padding: 100px 28px 40px;
        gap: 6px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -8px 0 48px rgba(0, 0, 0, 0.35);
        border-left: 1px solid rgba(255, 255, 255, 0.08);
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu a {
        width: 100%;
        padding: 13px 18px;
        text-align: left;
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.85);
        border-radius: 10px;
        margin-bottom: 2px;
        box-shadow: none;
    }
    
    .nav-menu a:hover {
        background: rgba(255, 255, 255, 0.08);
        color: var(--white);
        transform: translateX(4px);
        padding-left: 24px;
    }
    
    .nav-menu a.active {
        background: var(--primary-color);
        color: var(--white);
        box-shadow: 0 4px 16px rgba(203, 46, 71, 0.4);
    }

    .nav-menu a.nav-cta {
        background: var(--primary-color);
        color: var(--white) !important;
        margin-left: 0;
        margin-top: 12px;
        text-align: center;
        justify-content: center;
        box-shadow: 0 4px 16px rgba(203, 46, 71, 0.4);
    }

    .nav-menu a.nav-cta:hover {
        background: rgba(203, 46, 71, 0.8) !important;
        transform: none;
        padding-left: 18px;
    }
    
    .navbar.scrolled .nav-menu {
        background: var(--secondary-color);
    }
    
    .navbar.scrolled .nav-menu a {
        color: rgba(255, 255, 255, 0.85);
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about-preview-grid,
    .about-grid,
    .story-grid,
    .founder-grid,
    .service-detail-grid,
    .contact-grid,
    .newsletter-content {
        grid-template-columns: 1fr;
    }
    
    .service-detail-grid.reverse {
        grid-template-columns: 1fr;
    }
    
    .form-row,
    .stationery-grid,
    .service-highlights {
        grid-template-columns: 1fr;
    }
    
    .core-values-preview {
        grid-template-columns: 1fr;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 15px;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    
    .awards-grid,
    .services-grid,
    .stats-grid,
    .clients-grid,
    .philosophy-grid,
    .values-grid,
    .choose-grid,
    .impact-grid,
    .references-grid,
    .quick-contact-grid {
        grid-template-columns: 1fr;
    }
    
    .hero {
        min-height: auto;
        padding: 120px 0 60px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-section {
        padding: 30px 20px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}

/* ===================================
   ANIMATIONS & UTILITIES
   =================================== */
.fade-in {
    animation: fadeIn 1s ease-in;
}

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

.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Scroll animations will be handled by JavaScript */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}
