/* Global Styles */
:root {
    --primary-color: #8b5a2b;
    --secondary-color: #d4b78f;
    --dark-color: #333;
    --light-color: #f9f9f9;
    --accent-color: #c19a6b;
    --text-color: #555;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&family=Poppins:wght@300;400;600&family=Great+Vibes&display=swap');

:root {
    --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
    --font-heading: 'Poppins', 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--dark-color);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.underline {
    height: 3px;
    width: 80px;
    background: var(--primary-color);
    margin: 0 auto;
    position: relative;
}

.underline::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background: var(--accent-color);
    left: 50%;
    transform: translateX(-50%);
    bottom: -8px;
}

.btn {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Header & Navigation */
header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    max-width: 200px;
    /* Increased from 150px to 200px */
    height: auto;
}

.logo img {
    width: 100%;
    height: auto;
    display: block;
}

.logo h1 {
    display: none;
    /* Hide the text if logo image is used */
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--dark-color);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    bottom: 0;
    left: 0;
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger .line {
    width: 25px;
    height: 2px;
    background: var(--dark-color);
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: url('../images/hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    color: white;
    text-align: left;
    padding: 120px 0 80px;
    margin-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    max-width: 600px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 200px;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-light {
    background: white;
    color: var(--dark-color);
    border: 2px solid white;
}

.btn-primary:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* CTA Bar */
.cta-bar {
    background: var(--accent-color);
    padding: 30px 0;
    position: relative;
    z-index: 10;
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cta-content p {
    color: var(--dark-color);
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}


/* Services Section */
.services-section {
    padding: 80px 0;
    background: #fff;
}

/* Floating contact buttons (call & WhatsApp) */
.contact-fab-wrapper{
    position:fixed;
    right:20px;
    bottom:20px;
    display:flex;
    flex-direction:column;
    gap:12px;
    z-index:2200;
}
.contact-fab{
    width:52px;
    height:52px;
    border-radius:50%;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    box-shadow:0 12px 30px rgba(33,33,33,0.12);
    text-decoration:none;
    transition:transform .18s ease, box-shadow .18s ease, opacity .18s ease;
    font-size:18px;
}
.contact-fab.call{background:var(--primary-color)}
.contact-fab.whatsapp{background:#25D366}
.contact-fab:hover{transform:translateY(-6px);box-shadow:0 22px 44px rgba(33,33,33,0.18)}

@media(max-width:480px){
    .contact-fab{width:48px;height:48px;font-size:16px}
    .contact-fab-wrapper{right:14px;bottom:14px}
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background: var(--accent-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #fff;
    padding: 40px 25px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Core Values Section */
.core-values {
    padding: 60px 0;
    background: #fbfaf8;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    align-items: stretch;
    padding: 0 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.value-card {
    background: white;
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
    border: 1px solid #eee;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.value-card h3 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin: 0;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
}

.value-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px auto;
    color: #fff;
    font-size: 1.25rem;
}

.value-icon i {
    width: 28px;
    height: 28px;
}

.value-card h3 {
    margin-top: 6px;
}

@media (max-width: 480px) {
    .value-icon {
        width: 52px;
        height: 52px;
        font-size: 1.05rem;
    }
}

/* About Page Styles */
.about-hero {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.25)), url('../images/hero.jpg') center/cover no-repeat;
    color: #fff;
}

.about-hero .container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-hero-content {
    flex: 1.2;
}

.about-hero-content h1 {
    font-size: 2.6rem;
    margin-bottom: 12px;
    color: #fff;
}

.about-hero-content .lead {
    font-size: 1.05rem;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.95);
}

.about-hero-image {
    flex: 0.8;
    text-align: center;
}

.about-hero-image img {
    max-width: 320px;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-mission {
    padding: 60px 0;
    background: #fff;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.mission-item {
    background: #faf9f7;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #eee;
}

.about-team {
    padding: 60px 0;
    background: #fbfaf8;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    margin-top: 20px;
}

.team-member {
    text-align: center;
    padding: 18px;
    background: white;
    border-radius: 8px;
    border: 1px solid #eee;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.03);
}

.member-photo img {
    width: 96px;
    height: 96px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 12px;
}

.about-cta {
    padding: 40px 0 80px;
    background: var(--accent-color);
    color: var(--dark-color);
}

.about-cta .cta-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

/* About page: services grid */
.about-services .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 18px;
}

/* --- Redesigned About Page Styles --- */
.about-hero {
    position: relative;
    padding: 120px 0;
    color: #fff;
    background-size: cover;
    background-position: center;
}

.about-hero .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.35));
}

.about-hero .hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
}

.breadcrumb {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.95);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3.6vw, 3rem);
    letter-spacing: 0.6px;
    margin-bottom: 12px;
}

.hero-sub {
    max-width: 720px;
    font-size: clamp(0.95rem, 1.8vw, 1.15rem);
    opacity: 0.95;
    margin-bottom: 16px;
}

.hero-actions {
    display: flex;
    gap: 12px;
}

.fade-in {
    animation: fadeInUp 0.9s ease both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.studio {
    padding: 60px 0;
}

.studio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: center;
}

.studio-text h2 {
    margin-bottom: 8px;
    font-size: 1.8rem;
}

.studio-text .lead {
    margin-bottom: 12px;
}

.studio-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.studio-highlights {
    margin-top: 14px;
    display: grid;
    gap: 6px;
}

.founder {
    background: #fff;
    padding: 48px 0;
}

.founder-inner {
    display: flex;
    gap: 24px;
    align-items: center;
}

.founder-photo img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.founder-bio h3 {
    margin: 0;
    font-size: 1.4rem;
}

.designation {
    color: var(--text-color);
    margin-bottom: 10px;
}

.founder-quote {
    font-style: italic;
    color: #555;
    margin: 12px 0;
}

.signature {
    font-family: 'Great Vibes', cursive;
    font-size: 1.35rem;
    color: var(--dark-color);
    margin-top: 8px;
}

.philosophy {
    padding: 56px 0;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.philo-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    border: 1px solid #eee;
}

.philo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
}

.philo-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
}

.philo-icon svg {
    width: 28px;
    height: 28px;
}

.stats {
    background: #faf9f7;
    padding: 28px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    text-align: center;
    align-items: center;
}

.stat-item {
    padding: 18px 12px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--dark-color);
}

.stat-label {
    color: #666;
    margin-top: 6px;
}

.why-choose {
    padding: 48px 0;
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 0;
}

.choose-grid li {
    list-style: none;
    background: #fff;
    padding: 14px 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #eee;
}

.check {
    color: var(--primary-color);
    font-weight: 700;
}

.testimonials {
    padding: 36px 0;
}

.test-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.test-card {
    background: #fff;
    padding: 18px;
    border-radius: 8px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.04);
}

.cta-hero {
    position: relative;
    padding: 56px 0;
    background: var(--primary-color);
    color: #fff;
    text-align: center;
}

.cta-hero .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
}

.cta-inner {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.cta-inner h2 {
    font-family: var(--font-heading);
    margin-bottom: 14px;
}

/* Responsive */
@media (max-width: 992px) {
    .philosophy-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .studio-grid {
        grid-template-columns: 1fr;
    }

    .studio-image {
        order: -1;
    }

    .founder-inner {
        flex-direction: column;
        text-align: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .philosophy-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        text-align: left;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .choose-grid {
        grid-template-columns: 1fr;
    }
}

/* Utility tweaks */
.container {
    padding-left: 18px;
    padding-right: 18px;
}


.about-services .service-card {
    background: #fff;
    padding: 22px 16px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #eee;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.about-services .service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
}

.about-services .service-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    color: #fff;
    font-size: 1.4rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.about-services .service-icon svg {
    width: 36px;
    height: 36px;
    display: block;
}

.about-services .service-icon svg path,
.about-services .service-icon svg rect {
    fill: currentColor;
}

.about-services .service-card h4 {
    margin: 0;
    font-size: 1rem;
    color: var(--dark-color);
}

@media (max-width: 600px) {
    .about-hero .container {
        padding: 0 12px;
    }
}

@media (max-width: 900px) {
    .about-hero .container {
        flex-direction: column-reverse;
    }

    .about-hero-image {
        max-width: 420px;
    }

    .about-cta .cta-box {
        flex-direction: column;
        text-align: center;
    }
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--accent-color);
    font-size: 30px;
    transition: all 0.3s ease;
}

.service-card:hover .icon-wrapper {
    background: var(--accent-color);
    color: #fff;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #333;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1rem;
        padding: 0 20px;
    }
}

/* About Section */
.about {
    padding: 100px 0;
    background: #f9f9f9;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 50px;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-card p {
    color: var(--text-color);
    line-height: 1.7;
}

/* Portfolio Section */
.portfolio {
    padding: 100px 0;
    background: #f9f9f9;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.portfolio-item {
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    transition: var(--transition);
}

.portfolio-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 30px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
    bottom: 0;
}

.portfolio-overlay h3 {
    color: white;
    margin-bottom: 5px;
}

.portfolio-overlay p {
    color: var(--secondary-color);
    font-style: italic;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: white;
    text-align: center;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    padding: 40px;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

.quote {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    padding: 0 30px;
}

.quote::before,
.quote::after {
    content: '"';
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
}

.quote::before {
    top: -20px;
    left: 0;
}

.quote::after {
    bottom: -40px;
    right: 0;
}

.client h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.client p {
    color: var(--accent-color);
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #f9f9f9;
}

.contact-content {
    display: flex;
    gap: 50px;
    margin-top: 50px;
}

.contact-info {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

.contact-info h3 {
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.contact-info p {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-info i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f1f1f1;
    border-radius: 50%;
    color: var(--dark-color);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.contact-form {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group textarea {
    height: 150px;
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(139, 90, 43, 0.2);
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    background: #222;
    color: #ddd;
    padding: 70px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.footer-logo p {
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-links h4,
.footer-newsletter h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after,
.footer-newsletter h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #bbb;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #444;
    background: #333;
    color: white;
    border-radius: 4px 0 0 4px;
    font-family: 'Roboto', sans-serif;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.newsletter-form button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #444;
    font-size: 0.9rem;
    color: #999;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }

    .about-text,
    .about-image {
        width: 100%;
    }

    .contact-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 40px 0;
        transition: var(--transition);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        left: 0;
    }

    /* Hide phone text on smaller screens to save space */
    .phone-button span {
        display: none;
    }

    .hero h2 {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 12px 30px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .testimonial {
        padding: 30px 20px;
    }

    .quote {
        font-size: 1rem;
    }
}

/* Hamburger toggle animation (transform lines into X) */
.hamburger.toggle .line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.toggle .line:nth-child(2) {
    opacity: 0;
}
.hamburger.toggle .line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* When menu is open, hide/soft-hide FAB to avoid overlap on small screens */
.menu-open .contact-fab-wrapper {
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity .18s ease, transform .18s ease;
}

/* About page hero - ensure all text appears white for contrast */
.about-hero,
.about-hero .hero-inner,
.about-hero .hero-content,
.about-hero .hero-title,
.about-hero .hero-sub,
.about-hero .hero-actions,
.about-hero .breadcrumb,
.about-hero .breadcrumb a,
.about-hero .breadcrumb span,
.about-hero .hero-actions .btn {
    color: #ffffff !important;
}

.about-hero a.btn.btn-secondary {
    /* keep secondary button style but ensure text remains white */
    color: #ffffff !important;
}

.about-hero .breadcrumb a {
    opacity: 0.95;
}
