:root {
    --primary: #000000;
    --secondary: #1a1a1a;
    --accent: #c9a96e;
    --accent-light: #e8d5a3;
    --light: #f8f6f1;
    --dark: #0a0a0a;
    --text-light: #ffffff;
    --text-dark: #1a1a1a;
    --text-muted: #888888;
    --border-light: rgba(255,255,255,0.08);
    --shadow: 0 20px 60px rgba(0,0,0,0.15);
    --gold: #c9a96e;
    --header-height: 80px;
}

html, body {
    max-width: 100% !important;
    width: 100% !important;
}

* {
    max-width: 100%;
}

[class*="col-"] {
    max-width: 100% !important;
}

/* ============================================================
   2. GLOBAL STYLES
   ============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
}

.font-display {
    font-family: 'Playfair Display', serif;
}

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

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* ============================================================
   3. PRELOADER
   ============================================================ */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000000;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

.loader {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(201, 169, 110, 0.1);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.loader-text {
    color: rgba(255,255,255,0.3);
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 300;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================================
   4. HEADER / NAVIGATION
   ============================================================ */
.navbar-custom {
    background: rgba(0, 0, 0, 0.13);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 8px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar-custom.scrolled {
    background: rgba(0, 0, 0, 0.98);
    padding: 4px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.navbar-custom .navbar-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.navbar-custom .navbar-brand .logo-img {
    height: 48px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.navbar-custom .navbar-brand .brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.navbar-custom .navbar-brand .brand-text .main {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 2px;
}

.navbar-custom .navbar-brand .brand-text .main span {
    color: var(--accent);
}

.navbar-custom .navbar-brand .brand-text .tagline {
    font-size: 9px;
    font-weight: 300;
    color: rgba(255,255,255,0.35);
    letter-spacing: 4px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

.navbar-custom .navbar-nav {
    gap: 4px;
}

.navbar-custom .nav-link {
    color: rgba(255,255,255,0.6) !important;
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 0.8px;
    padding: 8px 20px !important;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
}

.navbar-custom .nav-link::before {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1.5px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.navbar-custom .nav-link:hover::before,
.navbar-custom .nav-link.active::before {
    width: 60%;
}

.navbar-custom .nav-link:hover {
    color: #ffffff !important;
}

.navbar-custom .nav-link.active {
    color: #ffffff !important;
}

.navbar-custom .btn-nav-cta {
    padding: 8px 28px;
    border-radius: 50px;
    background: var(--accent);
    color: #000000 !important;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    margin-left: 8px;
}

.navbar-custom .btn-nav-cta:hover {
    background: #d4b87a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 169, 110, 0.3);
    color: #000000 !important;
}

.navbar-toggler {
    border: none;
    padding: 6px 10px;
    font-size: 22px;
    color: #ffffff;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.navbar-toggler:hover {
    background: rgba(255,255,255,0.05);
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* ============================================================
   5. FOOTER
   ============================================================ */
.footer {
    background: #0a0a0a;
    color: rgba(255,255,255,0.7);
    padding: 80px 0 30px;
    margin-top: 0;
    border-top: 1px solid rgba(255,255,255,0.04);
}

.footer .footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.footer .footer-brand .logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.footer .footer-brand .brand-text .main {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 2px;
}

.footer .footer-brand .brand-text .main span {
    color: var(--accent);
}

.footer .footer-brand .brand-text .tagline {
    font-size: 9px;
    font-weight: 300;
    color: rgba(255,255,255,0.3);
    letter-spacing: 4px;
    text-transform: uppercase;
}

.footer .footer-description {
    color: rgba(255,255,255,0.4);
    font-size: 14px;
    line-height: 1.8;
    max-width: 300px;
    margin-bottom: 20px;
}

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

.footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    color: rgba(255,255,255,0.4);
    transition: all 0.3s ease;
    font-size: 16px;
    border: 1px solid rgba(255,255,255,0.04);
    text-decoration: none;
}

.footer .social-links a:hover {
    background: var(--accent);
    color: #000000;
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(201, 169, 110, 0.2);
    border-color: var(--accent);
}

.footer h5 {
    font-family: 'Playfair Display', serif;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

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

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

.footer .footer-links a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer .footer-links a::before {
    content: '—';
    color: var(--accent);
    opacity: 0;
    transition: all 0.3s ease;
}

.footer .footer-links a:hover {
    color: #ffffff;
}

.footer .footer-links a:hover::before {
    opacity: 1;
    margin-right: 4px;
}

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

.footer .footer-contact li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 8px 0;
    color: rgba(255,255,255,0.4);
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer .footer-contact li:hover {
    color: rgba(255,255,255,0.7);
}

.footer .footer-contact li i {
    width: 18px;
    color: var(--accent);
    font-size: 14px;
}

.footer .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.04);
    padding-top: 25px;
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer .footer-bottom .copyright {
    color: rgba(255,255,255,0.25);
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.footer .footer-bottom .footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer .footer-bottom .footer-bottom-links a {
    color: rgba(255,255,255,0.25);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.footer .footer-bottom .footer-bottom-links a:hover {
    color: var(--accent);
}

/* ============================================================
   6. HERO SECTION (Home)
   ============================================================ */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: #000000;
    overflow: hidden;
    padding-top: 80px;
}

.hero-section .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/photos/home-bg.jpg') center/cover no-repeat;
    opacity: 0.2;
    transform: scale(1.05);
    animation: heroZoom 25s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.25); }
}

.hero-section .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero-section .hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    padding: 60px 0;
}

.hero-section .hero-content .hero-badge {
    display: inline-block;
    padding: 6px 24px;
    background: rgba(201, 169, 110, 0.12);
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: 50px;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease forwards 0.3s;
    opacity: 0;
}

.hero-section .hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 76px;
    font-weight: 900;
    line-height: 1.02;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease forwards 0.6s;
    opacity: 0;
    letter-spacing: -1px;
}

.hero-section .hero-content h1 .highlight {
    background: linear-gradient(135deg, var(--accent), #f4e3c1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-section .hero-content .hero-subtitle {
    font-size: 18px;
    font-weight: 300;
    opacity: 0.5;
    max-width: 480px;
    margin-bottom: 36px;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease forwards 0.9s;
    opacity: 0;
    letter-spacing: 0.3px;
}

.hero-section .hero-content .hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    animation: fadeInUp 0.8s ease forwards 1.2s;
    opacity: 0;
}

.hero-section .hero-content .btn-hero {
    padding: 14px 42px;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.hero-section .hero-content .btn-hero-primary {
    background: var(--accent);
    color: #000000;
    border: none;
}

.hero-section .hero-content .btn-hero-primary:hover {
    background: #d4b87a;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(201, 169, 110, 0.3);
    color: #000000;
}

.hero-section .hero-content .btn-hero-outline {
    background: transparent;
    color: #ffffff;
    border: 1.5px solid rgba(255,255,255,0.15);
}

.hero-section .hero-content .btn-hero-outline:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    background: rgba(201, 169, 110, 0.05);
    color: #ffffff;
}

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

.hero-section .scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0.3;
    animation: bounce 2.5s infinite;
}

.hero-section .scroll-indicator .scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, rgba(255,255,255,0.3), transparent);
}

.hero-section .scroll-indicator span {
    color: rgba(255,255,255,0.3);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 300;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-8px); }
    60% { transform: translateX(-50%) translateY(-4px); }
}

/* ============================================================
   7. SECTION TITLES (Global)
   ============================================================ */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title .subtitle {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 8px;
}

.section-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    font-weight: 800;
    color: #000000;
    letter-spacing: -0.5px;
}

.section-title .line {
    width: 50px;
    height: 2px;
    background: var(--accent);
    margin: 16px auto 0;
}

.section-title.light .subtitle {
    color: var(--accent);
}

.section-title.light h2 {
    color: #ffffff;
}

.section-title.light .line {
    background: var(--accent);
}

/* ============================================================
   8. SERVICES SECTION
   ============================================================ */
.services-section {
    padding: 100px 0;
    background: #f8f6f1;
    margin-top: -100px;
}

.service-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 1px solid rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), #f4e3c1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

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

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.06);
    border-color: rgba(201, 169, 110, 0.1);
}

.service-card .icon {
    font-size: 36px;
    color: var(--accent);
    margin-bottom: 20px;
    display: inline-block;
    transition: all 0.4s ease;
    background: rgba(201, 169, 110, 0.06);
    width: 72px;
    height: 72px;
    line-height: 72px;
    border-radius: 50%;
}

.service-card:hover .icon {
    transform: scale(1.05);
    background: var(--accent);
    color: #000000;
}

.service-card h5 {
    font-weight: 700;
    margin-bottom: 12px;
    color: #000000;
    font-size: 18px;
    letter-spacing: -0.3px;
}

.service-card p {
    color: #888888;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 0;
}

.service-card .price {
    display: inline-block;
    margin-top: 16px;
    color: var(--accent);
    font-weight: 600;
    font-size: 18px;
}

.service-card .price small {
    font-weight: 300;
    font-size: 13px;
    color: #999;
}

/* ============================================================
   9. PORTFOLIO SECTION
   ============================================================ */
.portfolio-preview {
    padding: 100px 0;
    background: #ffffff;
}

.portfolio-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 30px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: #000000;
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.08);
}

.portfolio-item img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

.portfolio-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.7) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.portfolio-item:hover .overlay {
    opacity: 1;
}

.portfolio-item .overlay h5 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 4px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
    font-size: 20px;
    letter-spacing: -0.3px;
}

.portfolio-item .overlay .category {
    color: var(--accent);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
    font-weight: 300;
}

.portfolio-item .overlay .view-btn {
    margin-top: 12px;
    padding: 6px 24px;
    border-radius: 50px;
    background: var(--accent);
    color: #000000;
    border: none;
    font-weight: 500;
    font-size: 12px;
    transform: translateY(20px);
    transition: all 0.4s ease 0.2s;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.portfolio-item:hover .overlay h5,
.portfolio-item:hover .overlay .category,
.portfolio-item:hover .overlay .view-btn {
    transform: translateY(0);
}

.portfolio-item .overlay .view-btn:hover {
    background: #d4b87a;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 30px rgba(201, 169, 110, 0.3);
}

/* ============================================================
   10. ABOUT SECTION
   ============================================================ */
.about-preview {
    padding: 100px 0;
    background: #f8f6f1;
}

.about-preview .about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.06);
    position: relative;
}

.about-preview .about-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-preview .about-image:hover img {
    transform: scale(1.02);
}

.about-preview .about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 800;
    color: #000000;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.about-preview .about-content h2 span {
    color: var(--accent);
}

.about-preview .about-content p {
    color: #666666;
    line-height: 2;
    font-size: 16px;
    margin-bottom: 16px;
    font-weight: 300;
}

.about-preview .about-content .features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 24px 0;
    padding: 0;
}

.about-preview .about-content .features-list li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #444;
    font-weight: 400;
}

.about-preview .about-content .features-list li i {
    color: var(--accent);
    font-size: 14px;
}

/* ============================================================
   11. STATISTICS SECTION
   ============================================================ */
.stats-section {
    padding: 80px 0;
    background: #000000;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201,169,110,0.03) 0%, transparent 70%);
    border-radius: 50%;
}

.stat-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-item .number {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 800;
    color: var(--accent);
    display: block;
    letter-spacing: -1px;
}

.stat-item .label {
    opacity: 0.3;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 300;
}

/* ============================================================
   12. TEAM SECTION
   ============================================================ */
.team-preview {
    padding: 100px 0;
    background: #ffffff;
}

.team-card {
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 24px;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    height: 100%;
    border: 1px solid rgba(0,0,0,0.04);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.05);
    border-color: rgba(201, 169, 110, 0.1);
}

.team-card .image-wrapper {
    width: 160px;
    height: 160px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent);
    transition: all 0.4s ease;
    position: relative;
}

.team-card:hover .image-wrapper {
    border-color: var(--accent);
    transform: scale(1.02);
}

.team-card .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-card:hover .image-wrapper img {
    transform: scale(1.06);
}

.team-card h5 {
    font-weight: 700;
    color: #000000;
    margin-bottom: 4px;
    font-size: 18px;
    letter-spacing: -0.3px;
}

.team-card .designation {
    color: var(--accent);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* ============================================================
   13. TESTIMONIALS SECTION
   ============================================================ */
.testimonials-preview {
    padding: 100px 0;
    background: #000000;
    color: #ffffff;
}

.testimonial-card {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    border: 1px solid rgba(255,255,255,0.04);
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    background: rgba(255,255,255,0.05);
    transform: translateY(-6px);
    border-color: rgba(201, 169, 110, 0.1);
}

.testimonial-card .client-info {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.testimonial-card .client-info .avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 16px;
    border: 2px solid var(--accent);
    flex-shrink: 0;
}

.testimonial-card .client-info .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-card .client-info h6 {
    margin: 0;
    font-weight: 700;
    font-size: 16px;
    color: #ffffff;
}

.testimonial-card .client-info small {
    opacity: 0.4;
    font-size: 12px;
    color: #ffffff;
}

.testimonial-card .rating {
    color: var(--accent);
    margin-bottom: 12px;
    font-size: 13px;
}

.testimonial-card blockquote {
    font-style: italic;
    opacity: 0.7;
    line-height: 1.8;
    margin: 0;
    font-size: 15px;
    font-weight: 300;
    color: rgba(255,255,255,0.8);
}

.testimonial-card blockquote::before {
    content: '"';
    font-size: 32px;
    color: var(--accent);
    font-family: 'Playfair Display', serif;
    opacity: 0.5;
}

/* ============================================================
   14. CTA SECTION
   ============================================================ */
.cta-section {
    padding: 120px 0;
    background: #f8f6f1;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201,169,110,0.04) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section .badge-cta {
    display: inline-block;
    padding: 6px 24px;
    background: rgba(201, 169, 110, 0.08);
    border: 1px solid rgba(201, 169, 110, 0.1);
    border-radius: 50px;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 24px;
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #000000;
    letter-spacing: -0.5px;
}

.cta-section h2 span {
    color: var(--accent);
}

.cta-section p {
    opacity: 0.5;
    margin-bottom: 32px;
    font-size: 18px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.cta-section .btn-cta {
    padding: 16px 56px;
    background: #000000;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.cta-section .btn-cta:hover {
    background: var(--accent);
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(201, 169, 110, 0.25);
}

/* ============================================================
   15. FOUNDER SECTION
   ============================================================ */
.founder-section {
    padding: 40px 30px;
    background: #f8f6f1;
    position: relative;
    overflow: hidden;
}

.founder-section::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201,169,110,0.03) 0%, transparent 70%);
    border-radius: 50%;
}

.founder-image-wrapper {
    position: relative;
}

.founder-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.08);
}

.founder-image img {
    width: 100%;
    height: 550px;
    transition: transform 0.6s ease;
}

.founder-image .founder-experience {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(10px);
    padding: 16px 28px;
    border-radius: 16px;
    border: 1px solid rgba(201,169,110,0.2);
    text-align: center;
    color: #ffffff;
}

.founder-image .founder-experience .number {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--accent);
    display: block;
    line-height: 1.1;
}

.founder-image .founder-experience .label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.6;
}

.founder-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    justify-content: center;
}

.founder-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    color: #000000;
    transition: all 0.3s ease;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    text-decoration: none;
}

.founder-social a:hover {
    background: var(--accent);
    color: #000000;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(201, 169, 110, 0.3);
}

.founder-content {
    padding-left: 20px;
}

.founder-content .subtitle {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 500;
    display: block;
    margin-bottom: 8px;
}

.founder-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 800;
    color: #000000;
    margin-bottom: 4px;
    letter-spacing: -0.5px;
}

.founder-content .designation {
    font-size: 16px;
    color: #888;
    font-weight: 300;
    display: block;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.founder-content .founder-quote {
    background: rgba(201, 169, 110, 0.06);
    border-left: 3px solid var(--accent);
    padding: 20px 24px;
    border-radius: 0 12px 12px 0;
    margin-bottom: 24px;
    position: relative;
}

.founder-content .founder-quote i {
    color: var(--accent);
    font-size: 18px;
    opacity: 0.4;
    margin-bottom: 8px;
    display: block;
}

.founder-content .founder-quote p {
    font-style: italic;
    font-size: 18px;
    color: #444;
    line-height: 1.8;
    margin: 0;
    font-weight: 300;
}

.founder-content .founder-bio p {
    color: #666;
    line-height: 1.9;
    font-size: 15px;
    margin-bottom: 12px;
    font-weight: 300;
}

.founder-content .founder-bio p:last-child {
    margin-bottom: 0;
}

.founder-achievements {
    display: flex;
    gap: 40px;
    margin: 28px 0 32px;
}

.founder-achievements .achievement {
    text-align: center;
}

.founder-achievements .achievement .number {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--accent);
    display: block;
    line-height: 1.1;
}

.founder-achievements .achievement .label {
    font-size: 12px;
    color: #888;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.btn-founder {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 40px;
    background: #000000;
    color: #ffffff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
}

.btn-founder:hover {
    background: var(--accent);
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(201, 169, 110, 0.25);
}

/* ============================================================
   16. ABOUT PAGE
   ============================================================ */
.about-hero {
    padding: 160px 0 80px;
    background: #000000;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201,169,110,0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.about-hero .container {
    position: relative;
    z-index: 1;
}

.about-hero .badge {
    display: inline-block;
    padding: 6px 24px;
    background: rgba(201, 169, 110, 0.12);
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: 50px;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 20px;
}

.about-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 900;
    line-height: 1.05;
}

.about-hero h1 span {
    color: var(--accent);
}

.about-hero .hero-description {
    opacity: 0.5;
    font-size: 18px;
    max-width: 600px;
    margin-top: 20px;
    font-weight: 300;
    line-height: 1.8;
}

.about-story {
    padding: 100px 0;
    background: #ffffff;
}

.about-story .story-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.06);
    position: relative;
}

.about-story .story-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-story .story-image:hover img {
    transform: scale(1.02);
}

.about-story .story-image .experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 16px;
    border: 1px solid rgba(201,169,110,0.2);
    text-align: center;
    color: #ffffff;
}

.about-story .story-image .experience-badge .number {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--accent);
    display: block;
}

.about-story .story-image .experience-badge .label {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.6;
}

.about-story .story-content .section-label {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 12px;
    display: block;
}

.about-story .story-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 800;
    color: #000000;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.about-story .story-content h2 span {
    color: var(--accent);
}

.about-story .story-content p {
    color: #666;
    line-height: 2;
    font-size: 16px;
    margin-bottom: 16px;
    font-weight: 300;
}

.about-story .story-content .story-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 24px 0;
    padding: 0;
}

.about-story .story-content .story-highlights li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #444;
    font-weight: 400;
}

.about-story .story-content .story-highlights li i {
    color: var(--accent);
    font-size: 16px;
}

.mission-vision {
    padding: 100px 0;
    background: #f8f6f1;
}

.mission-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 48px 40px;
    text-align: center;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), #f4e3c1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

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

.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.06);
    border-color: rgba(201, 169, 110, 0.1);
}

.mission-card .icon {
    font-size: 44px;
    color: var(--accent);
    margin-bottom: 20px;
    display: inline-block;
    background: rgba(201, 169, 110, 0.06);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.mission-card:hover .icon {
    background: var(--accent);
    color: #000000;
    transform: scale(1.05);
}

.mission-card h4 {
    font-weight: 700;
    color: #000000;
    margin-bottom: 12px;
    font-size: 22px;
    letter-spacing: -0.3px;
}

.mission-card p {
    color: #666;
    line-height: 1.8;
    font-size: 15px;
    font-weight: 300;
}

.values-section {
    padding: 100px 0;
    background: #ffffff;
}

.value-card {
    text-align: center;
    padding: 30px 20px;
    transition: all 0.4s ease;
    border-radius: 16px;
}

.value-card:hover {
    transform: translateY(-4px);
}

.value-card .value-icon {
    font-size: 32px;
    color: var(--accent);
    margin-bottom: 16px;
    display: inline-block;
}

.value-card h5 {
    font-weight: 700;
    color: #000000;
    margin-bottom: 8px;
    font-size: 18px;
}

.value-card p {
    color: #888;
    font-size: 14px;
    line-height: 1.7;
    font-weight: 300;
}

.about-stats {
    padding: 80px 0;
    background: #000000;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.about-stats::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201,169,110,0.03) 0%, transparent 70%);
    border-radius: 50%;
}

.about-stats .stat-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.about-stats .stat-item .number {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 800;
    color: var(--accent);
    display: block;
    letter-spacing: -1px;
}

.about-stats .stat-item .label {
    opacity: 0.3;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 300;
}

.team-intro {
    padding: 100px 0;
    background: #f8f6f1;
    text-align: center;
}

.team-intro p {
    color: #666;
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 17px;
    line-height: 1.9;
    font-weight: 300;
}

.team-intro .btn-team {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 40px;
    background: #000000;
    color: #ffffff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
}

.team-intro .btn-team:hover {
    background: var(--accent);
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(201, 169, 110, 0.25);
}

.about-cta {
    padding: 80px 0;
    background: #ffffff;
    text-align: center;
    border-top: 1px solid #f0f0f0;
}

.about-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 800;
    color: #000000;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.about-cta h2 span {
    color: var(--accent);
}

.about-cta p {
    color: #888;
    font-size: 18px;
    max-width: 500px;
    margin: 0 auto 32px;
    font-weight: 300;
}

.about-cta .btn-cta-about {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 50px;
    background: var(--accent);
    color: #000000;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
}

.about-cta .btn-cta-about:hover {
    background: #d4b87a;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(201, 169, 110, 0.3);
}

/* ============================================================
   17. CONTACT PAGE
   ============================================================ */
.contact-hero {
    padding: 140px 0 60px;
    background: var(--primary);
    color: #fff;
    text-align: center;
}

.contact-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 12px;
}

.contact-hero h1 span {
    color: var(--gold);
}

.contact-hero p {
    opacity: 0.7;
    max-width: 600px;
    margin: 0 auto;
}

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

.contact-form-wrapper {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.contact-form-wrapper .form-control {
    border-radius: 8px;
    padding: 12px 16px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.contact-form-wrapper .form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
}

.contact-form-wrapper .form-label {
    font-weight: 600;
    color: var(--primary);
    font-size: 14px;
}

.contact-form-wrapper .btn-submit {
    padding: 12px 40px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}

.contact-form-wrapper .btn-submit:hover {
    background: #d63851;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.3);
}

.contact-form-wrapper .btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.contact-info-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    height: 100%;
    transition: all 0.4s ease;
}

.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.contact-info-card .info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #f1f3f5;
}

.contact-info-card .info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-info-card .info-item .icon {
    width: 40px;
    height: 40px;
    background: rgba(201, 169, 110, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 16px;
    flex-shrink: 0;
}

.contact-info-card .info-item .content h6 {
    font-weight: 600;
    color: var(--primary);
    margin: 0;
    font-size: 14px;
}

.contact-info-card .info-item .content p {
    color: #666;
    margin: 0;
    font-size: 14px;
}

.contact-info-card .social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.contact-info-card .social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s ease;
}

.contact-info-card .social-links a:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-3px);
}

.map-section {
    padding: 0 0 80px;
}

.map-section iframe {
    width: 100%;
    height: 400px;
    border-radius: 16px;
    border: none;
}

.alert-success {
    border-radius: 8px;
    border: none;
    background: #d4edda;
    color: #155724;
    padding: 16px 20px;
}

/* ============================================================
   18. PORTFOLIO DETAIL PAGE
   ============================================================ */
.project-detail-hero {
    padding: 140px 0 60px;
    background: var(--primary);
    color: #fff;
}

.project-detail-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 900;
}

.project-detail-hero .meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 16px;
    opacity: 0.7;
    font-size: 14px;
}

.project-detail-hero .meta span {
    display: flex;
    align-items: center;
}

.project-detail-hero .meta i {
    margin-right: 8px;
    color: var(--gold);
}

.project-detail-section {
    padding: 60px 0 80px;
}

.project-detail-section .cover-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.project-detail-section .cover-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.project-detail-section .project-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.project-detail-section .project-info .description {
    font-size: 16px;
    line-height: 2;
    color: #555;
    margin-bottom: 24px;
}

.project-detail-section .project-info .details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    background: var(--light);
    padding: 20px;
    border-radius: 12px;
}

.project-detail-section .project-info .details .detail-item {
    display: flex;
    flex-direction: column;
}

.project-detail-section .project-info .details .detail-item .label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    font-weight: 600;
}

.project-detail-section .project-info .details .detail-item .value {
    font-weight: 600;
    color: var(--primary);
}

.project-detail-section .gallery-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 30px;
    text-align: center;
}

.project-detail-section .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.project-detail-section .gallery-grid .gallery-item {
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.project-detail-section .gallery-grid .gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.project-detail-section .gallery-grid .gallery-item:hover img {
    transform: scale(1.05);
}

.project-detail-section .gallery-grid .gallery-item .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-detail-section .gallery-grid .gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.project-detail-section .gallery-grid .gallery-item .gallery-overlay i {
    color: #fff;
    font-size: 36px;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.lightbox.show {
    display: flex;
}

.lightbox .lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.lightbox .lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 8px;
    object-fit: contain;
}

.lightbox .close-lightbox {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    transition: transform 0.3s ease;
    background: none;
    border: none;
}

.lightbox .close-lightbox:hover {
    transform: rotate(90deg);
}

/* ============================================================
   19. PORTFOLIO LIST PAGE
   ============================================================ */
.portfolio-hero {
    padding: 140px 0 60px;
    background: var(--primary);
    color: #fff;
    text-align: center;
}

.portfolio-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 12px;
}

.portfolio-hero h1 span {
    color: var(--gold);
}

.portfolio-hero p {
    opacity: 0.7;
    max-width: 600px;
    margin: 0 auto;
}

.portfolio-section {
    padding: 60px 0 100px;
}

.category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 40px;
}

.category-filter .filter-btn {
    padding: 8px 20px;
    border-radius: 50px;
    background: transparent;
    border: 2px solid #e9ecef;
    color: #6c757d;
    font-weight: 500;
    font-size: 13px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.category-filter .filter-btn:hover,
.category-filter .filter-btn.active {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(201, 169, 110, 0.3);
}

.portfolio-grid .portfolio-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
    cursor: pointer;
}

.portfolio-grid .portfolio-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-grid .portfolio-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 46, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    padding: 20px;
    transform: scale(0.9);
}

.portfolio-grid .portfolio-item:hover .overlay {
    opacity: 1;
    transform: scale(1);
}

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

.portfolio-grid .portfolio-item .overlay h5 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 4px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.portfolio-grid .portfolio-item .overlay .category {
    color: var(--gold);
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}

.portfolio-grid .portfolio-item .overlay .view-btn {
    margin-top: 16px;
    padding: 8px 24px;
    border-radius: 50px;
    background: var(--accent);
    color: #fff;
    border: none;
    font-weight: 500;
    font-size: 13px;
    transform: translateY(20px);
    transition: all 0.4s ease 0.2s;
    text-decoration: none;
}

.portfolio-grid .portfolio-item:hover .overlay h5,
.portfolio-grid .portfolio-item:hover .overlay .category,
.portfolio-grid .portfolio-item:hover .overlay .view-btn {
    transform: translateY(0);
}

.portfolio-grid .portfolio-item .overlay .view-btn:hover {
    background: #d63851;
    transform: translateY(-3px) !important;
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.4);
}

.pagination-wrapper {
    margin-top: 40px;
}

.pagination-wrapper .pagination {
    justify-content: center;
}

.pagination-wrapper .page-link {
    color: var(--primary);
    border-radius: 8px;
    margin: 0 4px;
    padding: 8px 16px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.pagination-wrapper .page-link:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.pagination-wrapper .page-item.active .page-link {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

/* ============================================================
   20. QUALITY PAGE
   ============================================================ */
.quality-hero {
    padding: 140px 0 60px;
    background: var(--primary);
    color: #fff;
    text-align: center;
}

.quality-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 12px;
}

.quality-hero h1 span {
    color: var(--gold);
}

.quality-hero p {
    opacity: 0.7;
    max-width: 600px;
    margin: 0 auto;
}

.quality-section {
    padding: 80px 0 100px;
}

.quality-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.quality-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.quality-card .icon {
    font-size: 48px;
    color: var(--accent);
    margin-bottom: 20px;
    display: inline-block;
    background: rgba(201, 169, 110, 0.1);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.quality-card:hover .icon {
    background: var(--accent);
    color: #fff;
    transform: scale(1.1) rotate(10deg);
}

.quality-card h4 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.quality-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 0;
    font-size: 15px;
}

.quality-features {
    padding: 80px 0;
    background: var(--light);
}

.quality-features .feature-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    transition: all 0.4s ease;
}

.quality-features .feature-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.quality-features .feature-item .feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(201, 169, 110, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 20px;
}

.quality-features .feature-item .feature-content h6 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.quality-features .feature-item .feature-content p {
    color: #666;
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

/* ============================================================
   21. TEAM PAGE
   ============================================================ */
.team-hero {
    padding: 140px 0 60px;
    background: var(--primary);
    color: #fff;
    text-align: center;
}

.team-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 12px;
}

.team-hero h1 span {
    color: var(--gold);
}

.team-hero p {
    opacity: 0.7;
    max-width: 600px;
    margin: 0 auto;
}

.team-section {
    padding: 80px 0 100px;
}

.team-member-card {
    text-align: center;
    transition: all 0.4s ease;
    padding: 20px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    height: 100%;
}

.team-member-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.team-member-card .image-wrapper {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.team-member-card:hover .image-wrapper {
    border-color: var(--accent);
    transform: scale(1.05);
}

.team-member-card .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-member-card:hover .image-wrapper img {
    transform: scale(1.1);
}

.team-member-card .image-wrapper .social-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
}

.team-member-card:hover .image-wrapper .social-overlay {
    opacity: 1;
}

.team-member-card .image-wrapper .social-overlay a {
    color: #fff;
    font-size: 18px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.team-member-card .image-wrapper .social-overlay a:hover {
    background: #fff;
    color: var(--accent);
    transform: scale(1.1);
}

.team-member-card h5 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.team-member-card .designation {
    color: var(--accent);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.team-member-card .bio {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 12px;
}

.team-member-card .experience {
    color: #999;
    font-size: 13px;
}

.team-member-card .experience i {
    color: var(--gold);
    margin-right: 4px;
}

/* ============================================================
   22. TESTIMONIALS PAGE
   ============================================================ */
.testimonials-hero {
    padding: 140px 0 60px;
    background: var(--primary);
    color: #fff;
    text-align: center;
}

.testimonials-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 12px;
}

.testimonials-hero h1 span {
    color: var(--gold);
}

.testimonials-hero p {
    opacity: 0.7;
    max-width: 600px;
    margin: 0 auto;
}

.testimonials-section {
    padding: 80px 0 100px;
}

.testimonial-item {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.04);
}

.testimonial-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.testimonial-item .client-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.testimonial-item .client-header .avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid var(--gold);
}

.testimonial-item .client-header .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-item .client-header .client-info h6 {
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}

.testimonial-item .client-header .client-info .designation {
    font-size: 13px;
    color: #999;
    margin: 0;
}

.testimonial-item .rating {
    color: var(--gold);
    margin-bottom: 12px;
    font-size: 14px;
}

.testimonial-item blockquote {
    font-style: italic;
    color: #555;
    line-height: 1.8;
    margin: 0;
    font-size: 15px;
}

.testimonial-item blockquote::before {
    content: '"';
    font-size: 30px;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
}

.testimonial-item .project-type {
    display: inline-block;
    margin-top: 12px;
    padding: 4px 16px;
    background: var(--light);
    border-radius: 50px;
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

.testimonial-item .review-date {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    color: #999;
}

.featured-badge {
    display: inline-block;
    background: var(--gold);
    color: #fff;
    padding: 2px 12px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-left: 8px;
}

/* ============================================================
   23. LEGAL PAGES (Privacy Policy, Terms of Service)
   ============================================================ */
.legal-hero {
    padding: 140px 0 60px;
    background: #000000;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.legal-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201,169,110,0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.legal-hero .container {
    position: relative;
    z-index: 1;
}

.legal-hero .badge {
    display: inline-block;
    padding: 6px 24px;
    background: rgba(201, 169, 110, 0.12);
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: 50px;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 20px;
}

.legal-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 16px;
}

.legal-hero h1 span {
    color: var(--accent);
}

.legal-hero p {
    opacity: 0.5;
    font-size: 18px;
    max-width: 600px;
    font-weight: 300;
}

.legal-content {
    padding: 80px 0 100px;
    background: #ffffff;
}

.legal-content .last-updated {
    display: inline-block;
    padding: 6px 20px;
    background: #f8f6f1;
    border-radius: 50px;
    font-size: 13px;
    color: #666;
    margin-bottom: 40px;
}

.legal-content .legal-section {
    margin-bottom: 48px;
}

.legal-content .legal-section:last-child {
    margin-bottom: 0;
}

.legal-content .legal-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.legal-content .legal-section h2 .section-number {
    color: var(--accent);
    margin-right: 8px;
}

.legal-content .legal-section p {
    color: #555;
    line-height: 1.9;
    font-size: 16px;
    margin-bottom: 12px;
    font-weight: 300;
}

.legal-content .legal-section ul {
    padding-left: 24px;
    margin-bottom: 16px;
}

.legal-content .legal-section ul li {
    color: #555;
    line-height: 1.9;
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 6px;
}

.legal-content .legal-section ul li strong {
    color: #000000;
    font-weight: 600;
}

.legal-content .legal-divider {
    height: 1px;
    background: #e8e8e8;
    margin: 48px 0;
}

.legal-content .legal-highlight {
    background: #f8f6f1;
    padding: 30px 40px;
    border-radius: 16px;
    border-left: 4px solid var(--accent);
    margin: 20px 0;
}

.legal-content .legal-highlight p {
    color: #444;
    margin: 0;
    font-weight: 400;
}

.legal-content .legal-highlight p i {
    color: var(--accent);
    margin-right: 8px;
}

/* ============================================================
   UTILITY BUTTONS
   ============================================================ */
.btn {
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--accent) !important;
    border-color: var(--accent) !important;
    color: #000000 !important;
    border-radius: 50px !important;
    padding: 12px 36px !important;
    font-weight: 600 !important;
}

.btn-primary:hover {
    background: #d4b87a !important;
    border-color: #d4b87a !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(201, 169, 110, 0.3);
}

.btn_contact_us {
    padding: 12px 40px;
    background: var(--accent);
    color: #000000;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn_contact_us:hover {
    background: #d4b87a;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(201, 169, 110, 0.3);
}

/* ============================================================
   24. RESPONSIVE STYLES
   ============================================================ */

/* ===== BREAKPOINT: 1440px+ (Large Desktop) ===== */
@media (min-width: 1441px) {
    .container {
        max-width: 1320px;
    }
    
    .hero-section .hero-content h1 {
        font-size: 86px;
    }
    
    .about-hero h1 {
        font-size: 64px;
    }
    
    .section-title h2 {
        font-size: 50px;
    }
}

/* ===== BREAKPOINT: 1024px - 1440px (Desktop) ===== */
@media (max-width: 1440px) {
    .container {
        max-width: 1140px;
    }
    
    .hero-section .hero-content h1 {
        font-size: 66px;
    }
    
    .about-hero h1 {
        font-size: 50px;
    }
    
    .section-title h2 {
        font-size: 40px;
    }
    
    .cta-section h2 {
        font-size: 44px;
    }
    
    .founder-content h2 {
        font-size: 38px;
    }
}

/* ===== BREAKPOINT: 1024px (Tablet / Small Desktop) ===== */
@media (max-width: 1024px) {
    .hero-section .hero-content h1 {
        font-size: 52px;
    }
    
    .about-hero h1 {
        font-size: 42px;
    }
    
    .section-title h2 {
        font-size: 36px;
    }
    
    .cta-section h2 {
        font-size: 38px;
    }
    
    .founder-content h2 {
        font-size: 34px;
    }
    
    .founder-image img {
        height: 420px;
    }
    
    .about-story .story-image img {
        height: 380px;
    }
    
    .about-preview .about-image img {
        height: 360px;
    }
    
    .project-detail-section .cover-image img {
        height: 400px;
    }
    
    .portfolio-item img {
        height: 260px;
    }
    
    .founder-content {
        padding-left: 0;
        margin-top: 30px;
    }
    
    .about-story .story-content h2 {
        font-size: 32px;
    }
    
    .about-preview .about-content h2 {
        font-size: 32px;
    }
    
    .legal-hero h1 {
        font-size: 44px;
    }
    
    .navbar-custom .navbar-collapse {
        background: rgba(0, 0, 0, 0.98);
        padding: 24px;
        border-radius: 16px;
        margin-top: 12px;
        border: 1px solid rgba(255,255,255,0.04);
        backdrop-filter: blur(20px);
    }
    
    .navbar-custom .navbar-nav {
        gap: 2px;
    }
    
    .navbar-custom .btn-nav-cta {
        margin-left: 0;
        margin-top: 8px;
        text-align: center;
    }
    
    .footer .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ===== BREAKPOINT: 768px (Tablet) ===== */
@media (max-width: 768px) {
    /* Global */
    .section-title {
        margin-bottom: 40px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    /* Header */
    .navbar-custom .navbar-brand .logo-img {
        height: 40px;
    }
    
    .navbar-custom .navbar-brand .brand-text .main {
        font-size: 20px;
    }
    
    /* Hero */
    .hero-section .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-section .hero-content .hero-subtitle {
        font-size: 16px;
        max-width: 100%;
    }
    
    .hero-section .hero-content .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero-section .hero-content .btn-hero {
        padding: 12px 32px;
        font-size: 13px;
    }
    
    /* About */
    .about-preview .about-content h2 {
        font-size: 26px;
    }
    
    .about-preview .about-content .features-list {
        grid-template-columns: 1fr;
    }
    
    .about-preview .about-image img {
        height: 250px;
    }
    
    .about-story .story-image img {
        height: 280px;
    }
    
    .about-story .story-image .experience-badge {
        bottom: 16px;
        right: 16px;
        padding: 14px 20px;
    }
    
    .about-story .story-image .experience-badge .number {
        font-size: 24px;
    }
    
    .about-story .story-content h2 {
        font-size: 26px;
    }
    
    .about-story .story-content .story-highlights {
        grid-template-columns: 1fr;
    }
    
    .about-hero h1 {
        font-size: 32px;
    }
    
    .about-hero .hero-description {
        font-size: 16px;
    }
    
    .about-stats .stat-item .number {
        font-size: 40px;
    }
    
    .mission-card {
        padding: 32px 24px;
    }
    
    .about-cta h2 {
        font-size: 26px;
    }
    
    /* Services */
    .services-section {
        padding: 60px 0;
        margin-top: -60px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    /* Portfolio */
    .portfolio-item img {
        height: 220px;
    }
    
    .portfolio-preview {
        padding: 60px 0;
    }
    
    .portfolio-hero h1 {
        font-size: 32px;
    }
    
    .portfolio-grid .portfolio-item img {
        height: 200px;
    }
    
    .category-filter .filter-btn {
        font-size: 12px;
        padding: 6px 14px;
    }
    
    /* Statistics */
    .stat-item .number {
        font-size: 40px;
    }
    
    .stats-section {
        padding: 60px 0;
    }
    
    /* Team */
    .team-card .image-wrapper {
        width: 130px;
        height: 130px;
    }
    
    .team-preview {
        padding: 60px 0;
    }
    
    .team-hero h1 {
        font-size: 32px;
    }
    
    .team-member-card .image-wrapper {
        width: 150px;
        height: 150px;
    }
    
    /* Testimonials */
    .testimonials-preview {
        padding: 60px 0;
    }
    
    .testimonial-card {
        padding: 24px;
    }
    
    .testimonials-hero h1 {
        font-size: 32px;
    }
    
    .testimonial-item .client-header {
        flex-direction: column;
        text-align: center;
    }
    
    /* CTA */
    .cta-section {
        padding: 80px 0;
    }
    
    .cta-section h2 {
        font-size: 28px;
    }
    
    .cta-section .btn-cta {
        padding: 14px 36px;
        font-size: 13px;
    }
    
    /* Founder */
    .founder-section {
        padding: 30px 20px;
    }
    
    .founder-image img {
        height: 320px;
    }
    
    .founder-image .founder-experience {
        bottom: 16px;
        right: 16px;
        padding: 12px 20px;
    }
    
    .founder-image .founder-experience .number {
        font-size: 22px;
    }
    
    .founder-content h2 {
        font-size: 28px;
    }
    
    .founder-content .founder-quote p {
        font-size: 16px;
    }
    
    .founder-achievements {
        gap: 24px;
        flex-wrap: wrap;
    }
    
    .founder-achievements .achievement .number {
        font-size: 24px;
    }
    
    .btn-founder {
        padding: 12px 32px;
        font-size: 13px;
    }
    
    /* Contact */
    .contact-hero h1 {
        font-size: 32px;
    }
    
    .contact-form-wrapper {
        padding: 24px;
    }
    
    .contact-info-card .info-item {
        padding: 12px 0;
    }
    
    /* Portfolio Detail */
    .project-detail-hero h1 {
        font-size: 28px;
    }
    
    .project-detail-section .cover-image img {
        height: 250px;
    }
    
    .project-detail-section .project-info .details {
        grid-template-columns: 1fr;
    }
    
    .project-detail-section .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .project-detail-section .gallery-grid .gallery-item img {
        height: 200px;
    }
    
    /* Quality */
    .quality-hero h1 {
        font-size: 32px;
    }
    
    .quality-features .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .quality-features .feature-item .feature-icon {
        margin: 0 auto;
    }
    
    /* Legal */
    .legal-hero h1 {
        font-size: 36px;
    }
    
    .legal-content .legal-section h2 {
        font-size: 22px;
    }
    
    .legal-content .legal-highlight {
        padding: 20px;
    }
    
    /* Footer */
    .footer {
        padding: 60px 0 30px;
    }
    
    .footer .footer-description {
        max-width: 100%;
    }
    
    .footer .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer .footer-bottom .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* ===== BREAKPOINT: 425px (Mobile Large) ===== */
@media (max-width: 425px) {
    /* Global */
    .section-title h2 {
        font-size: 24px;
    }
    
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    /* Header */
    .navbar-custom .navbar-brand .brand-text .tagline {
        display: none;
    }
    
    .navbar-custom .navbar-brand .logo-img {
        height: 36px;
    }
    
    .navbar-custom .navbar-brand .brand-text .main {
        font-size: 18px;
    }
    
    .navbar-custom .nav-link {
        font-size: 12px;
        padding: 6px 14px !important;
    }
    
    .navbar-custom .btn-nav-cta {
        padding: 6px 20px;
        font-size: 11px;
    }
    
    /* Hero */
    .hero-section .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-section .hero-content .hero-subtitle {
        font-size: 14px;
    }
    
    .hero-section .hero-content .btn-hero {
        padding: 10px 24px;
        font-size: 12px;
        width: 100%;
        justify-content: center;
    }
    
    .hero-section .hero-content .hero-buttons {
        gap: 12px;
        width: 100%;
    }
    
    /* About */
    .about-hero h1 {
        font-size: 26px;
    }
    
    .about-hero .hero-description {
        font-size: 14px;
    }
    
    .about-story .story-content h2 {
        font-size: 22px;
    }
    
    .about-story .story-image img {
        height: 220px;
    }
    
    .about-preview .about-content h2 {
        font-size: 22px;
    }
    
    .about-preview .about-image img {
        height: 200px;
    }
    
    .about-stats .stat-item .number {
        font-size: 32px;
    }
    
    .mission-vision .section-title h2,
    .values-section .section-title h2,
    .team-intro .section-title h2 {
        font-size: 26px;
    }
    
    .mission-card {
        padding: 24px 16px;
    }
    
    .mission-card .icon {
        font-size: 36px;
        width: 64px;
        height: 64px;
        line-height: 64px;
    }
    
    /* Services */
    .service-card {
        padding: 24px 16px;
    }
    
    .service-card .icon {
        font-size: 30px;
        width: 60px;
        height: 60px;
        line-height: 60px;
    }
    
    /* Portfolio */
    .portfolio-item img {
        height: 180px;
    }
    
    .portfolio-hero h1 {
        font-size: 26px;
    }
    
    .portfolio-grid .portfolio-item img {
        height: 180px;
    }
    
    .category-filter .filter-btn {
        font-size: 11px;
        padding: 5px 12px;
    }
    
    /* Team */
    .team-card .image-wrapper {
        width: 110px;
        height: 110px;
    }
    
    .team-hero h1 {
        font-size: 26px;
    }
    
    .team-member-card .image-wrapper {
        width: 120px;
        height: 120px;
    }
    
    /* Testimonials */
    .testimonials-hero h1 {
        font-size: 26px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    /* CTA */
    .cta-section h2 {
        font-size: 24px;
    }
    
    .cta-section p {
        font-size: 15px;
    }
    
    .cta-section .btn-cta {
        padding: 12px 28px;
        font-size: 12px;
        width: 100%;
        justify-content: center;
    }
    
    .cta-section .badge-cta {
        font-size: 10px;
        padding: 4px 16px;
    }
    
    /* Founder */
    .founder-image img {
        height: 250px;
    }
    
    .founder-content h2 {
        font-size: 24px;
    }
    
    .founder-content .founder-quote p {
        font-size: 14px;
    }
    
    .founder-achievements {
        gap: 16px;
    }
    
    .founder-achievements .achievement .number {
        font-size: 20px;
    }
    
    .founder-social {
        gap: 8px;
    }
    
    .founder-social a {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
    
    .btn-founder {
        padding: 10px 24px;
        font-size: 12px;
        width: 100%;
        justify-content: center;
    }
    
    /* Contact */
    .contact-hero h1 {
        font-size: 26px;
    }
    
    .contact-form-wrapper {
        padding: 16px;
    }
    
    .contact-form-wrapper .form-control {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .contact-info-card {
        padding: 20px;
    }
    
    .contact-info-card .info-item .icon {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .map-section iframe {
        height: 250px;
    }
    
    /* Portfolio Detail */
    .project-detail-hero h1 {
        font-size: 24px;
    }
    
    .project-detail-hero .meta {
        font-size: 12px;
        gap: 12px;
    }
    
    .project-detail-section .cover-image img {
        height: 200px;
    }
    
    .project-detail-section .project-info h2 {
        font-size: 24px;
    }
    
    .project-detail-section .gallery-grid .gallery-item img {
        height: 180px;
    }
    
    /* Quality */
    .quality-hero h1 {
        font-size: 26px;
    }
    
    .quality-card {
        padding: 24px 16px;
    }
    
    .quality-card .icon {
        font-size: 36px;
        width: 64px;
        height: 64px;
        line-height: 64px;
    }
    
    .quality-features .feature-item {
        padding: 16px;
    }
    
    /* Legal */
    .legal-hero h1 {
        font-size: 28px;
    }
    
    .legal-content .legal-section h2 {
        font-size: 20px;
    }
    
    .legal-content .legal-section ul {
        padding-left: 16px;
    }
    
    .legal-content .legal-section p,
    .legal-content .legal-section ul li {
        font-size: 14px;
    }
    
    .legal-content .legal-highlight {
        padding: 16px;
    }
    
    /* Testimonials */
    .testimonial-item {
        padding: 20px;
    }
    
    .testimonial-item .client-header .avatar {
        width: 48px;
        height: 48px;
    }
    
    .testimonial-item blockquote {
        font-size: 14px;
    }
    
    /* Footer */
    .footer .footer-brand .logo-img {
        height: 40px;
    }
    
    .footer .footer-brand .brand-text .main {
        font-size: 20px;
    }
    
    .footer .footer-contact li {
        font-size: 13px;
        padding: 6px 0;
    }
    
    .footer .footer-bottom .copyright {
        font-size: 11px;
    }
    
    .footer .footer-bottom .footer-bottom-links {
        gap: 16px;
    }
    
    .footer .footer-bottom .footer-bottom-links a {
        font-size: 10px;
    }
}

/* ===== BREAKPOINT: 375px (Mobile Medium) ===== */
@media (max-width: 375px) {
    /* Hero */
    .hero-section .hero-content h1 {
        font-size: 24px;
    }
    
    .hero-section .hero-content .hero-badge {
        font-size: 10px;
        padding: 4px 16px;
    }
    
    /* Section Titles */
    .section-title h2 {
        font-size: 22px;
    }
    
    /* About */
    .about-hero h1 {
        font-size: 22px;
    }
    
    .about-story .story-content h2 {
        font-size: 20px;
    }
    
    .about-preview .about-content h2 {
        font-size: 20px;
    }
    
    /* Founder */
    .founder-content h2 {
        font-size: 22px;
    }
    
    .founder-image img {
        height: 220px;
    }
    
    /* Contact */
    .contact-hero h1 {
        font-size: 22px;
    }
}

/* ===== BREAKPOINT: 320px (Mobile Small) ===== */
@media (max-width: 320px) {
    /* Global */
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }
    
    /* Header */
    .navbar-custom .navbar-brand .brand-text .main {
        font-size: 16px;
    }
    
    .navbar-custom .navbar-brand .logo-img {
        height: 32px;
    }
    
    .navbar-custom .nav-link {
        font-size: 11px;
        padding: 4px 10px !important;
    }
    
    /* Hero */
    .hero-section .hero-content h1 {
        font-size: 20px;
    }
    
    .hero-section .hero-content .hero-subtitle {
        font-size: 13px;
    }
    
    .hero-section .hero-content .btn-hero {
        padding: 8px 16px;
        font-size: 11px;
    }
    
    /* Section Titles */
    .section-title h2 {
        font-size: 20px;
    }
    
    .section-title .subtitle {
        font-size: 9px;
    }
    
    /* About */
    .about-hero h1 {
        font-size: 20px;
    }
    
    .about-hero .hero-description {
        font-size: 13px;
    }
    
    .about-story .story-content h2 {
        font-size: 18px;
    }
    
    .about-preview .about-content h2 {
        font-size: 18px;
    }
    
    /* CTA */
    .cta-section h2 {
        font-size: 20px;
    }
    
    .cta-section p {
        font-size: 13px;
    }
    
    /* Founder */
    .founder-content h2 {
        font-size: 20px;
    }
    
    .founder-image img {
        height: 200px;
    }
    
    /* Contact */
    .contact-hero h1 {
        font-size: 20px;
    }
    
    /* Footer */
    .footer .footer-brand .brand-text .main {
        font-size: 18px;
    }
    
    .footer .footer-bottom .footer-bottom-links {
        gap: 12px;
    }
}

/* ============================================================
   ADDITIONAL RESPONSIVE FIXES
   ============================================================ */

/* Fix for images on small screens */
@media (max-width: 576px) {
    .hero-section .hero-bg {
        background-position: center;
    }
    
    .about-story .story-image .experience-badge {
        bottom: 10px;
        right: 10px;
        padding: 10px 16px;
    }
    
    .about-story .story-image .experience-badge .number {
        font-size: 20px;
    }
    
    .about-story .story-image .experience-badge .label {
        font-size: 10px;
    }
    
    .founder-image .founder-experience {
        bottom: 10px;
        right: 10px;
        padding: 10px 16px;
    }
    
    .founder-image .founder-experience .number {
        font-size: 18px;
    }
    
    .founder-image .founder-experience .label {
        font-size: 9px;
    }
    
    .project-detail-hero .meta {
        flex-direction: column;
        gap: 6px;
    }
    
    .testimonial-item .client-header {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-item .client-header .avatar {
        margin: 0 auto;
    }
    
    .quality-features .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .quality-features .feature-item .feature-icon {
        margin: 0 auto;
    }
}

/* Ensure all buttons are touch-friendly */
@media (max-width: 768px) {
    .btn,
    .btn-hero,
    .btn-cta,
    .btn-founder,
    .btn-team,
    .btn-cta-about,
    .btn_contact_us,
    .navbar-custom .btn-nav-cta,
    .filter-btn,
    .view-btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    .navbar-toggler {
        padding: 8px 12px;
        font-size: 20px;
    }
}