/* ============================================
   ALMA GROUP DESIGN - BLACK/WHITE/GREY LUXURY DESIGN
   Colors: Black, White, Light/Medium Greys
   Fonts: Italic Serif + Modern Sans
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,800;1,700;1,800&family=Lato:ital,wght@0,300;0,400;0,500;0,700;1,400;1,700&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&display=swap');

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

:root {
    --primary-dark: #000000;
    --primary-medium: #b0b0b0;
    --primary-light: #d0d0d0;
    --secondary-light: #e8e8e8;
    --white: #ffffff;
    --dark-text: #1a1a1a;
}

body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--dark-text);
    background-color: var(--secondary-light);
    letter-spacing: 0.3px;
}

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

/* ============================================
   NAVIGATION BAR
   ============================================ */

.navbar {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a1a1a 100%);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: #ffffff;
    padding: 8px 16px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.logo-img {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.logo-img:hover {
    transform: scale(1.08);
}

.logo-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
}

.logo-text {
    font-size: 15px;
    font-weight: 700;
    color: #000000;
    letter-spacing: 0.5px;
    font-family: 'Playfair Display', serif;
    text-transform: capitalize;
    font-style: italic;
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    transition: all 0.3s ease;
    justify-content: center;
}

.logo-text-line1 {
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.logo-text-line2 {
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    opacity: 0.9;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 1px;
    font-style: italic;
    line-height: 1.1;
}

.logo:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.logo:hover .logo-text {
    color: #1a1a1a;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 200;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background-color: var(--white);
    border-radius: 3px;
    transition: all 0.4s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: var(--secondary-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    font-size: 15px;
    text-transform: capitalize;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
}

.nav-links a.active::after,
.nav-links a:hover::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--white), transparent);
}

/* ============================================
   HERO SECTION (HOME PAGE WITH BACKGROUND IMAGE)
   ============================================ */

.hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(26, 26, 26, 0.5) 100%),
                url('images/project3-urban/32-Ironwood.jpg') center/cover no-repeat;
    color: var(--white);
    padding: 180px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.hero-content h1 {
    font-size: 72px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.1;
    color: var(--white);
    font-family: 'Playfair Display', serif;
    letter-spacing: -1px;
    font-style: italic;
}

.hero-content p {
    font-size: 24px;
    margin-bottom: 50px;
    opacity: 0.95;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    padding: 16px 45px;
    margin: 0 12px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--white) 0%, #f5f5f5 100%);
    color: var(--primary-dark);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
    font-weight: 700;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #f5f5f5 0%, var(--white) 100%);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.5);
}

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-dark);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.4);
}

/* ============================================
   FEATURED PROJECTS SECTION
   ============================================ */

.featured {
    padding: 100px 0;
    background-color: var(--white);
}

.featured h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 70px;
    color: var(--primary-dark);
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    letter-spacing: -1px;
    font-style: italic;
}

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

.project-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.project-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.project-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.project-card:hover img {
    transform: scale(1.05);
}

.project-card h3 {
    color: var(--primary-dark);
    font-size: 20px;
    padding: 25px 20px 15px;
    border-bottom: 3px solid var(--primary-medium);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-style: italic;
}

.project-card p {
    padding: 15px 20px 20px;
    color: var(--dark-text);
    font-size: 14px;
}

/* ============================================
   PAGE HEADER (ABOUT, PORTFOLIO, ETC)
   ============================================ */

.page-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a1a1a 100%);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.page-header h1 {
    font-size: 54px;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    letter-spacing: -1px;
    position: relative;
    z-index: 1;
    font-style: italic;
}

.page-header p {
    font-size: 18px;
    opacity: 0.95;
    position: relative;
    z-index: 1;
    font-weight: 300;
    letter-spacing: 1px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-section {
    padding: 100px 0;
    background-color: var(--white);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content h2 {
    color: var(--primary-dark);
    font-size: 36px;
    margin-top: 50px;
    margin-bottom: 25px;
    border-left: 5px solid var(--primary-medium);
    padding-left: 25px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-style: italic;
}

.about-content p {
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.9;
    color: var(--dark-text);
}

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

.value-card {
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.value-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    color: var(--primary-dark);
    font-weight: 700;
    font-style: italic;
}

.value-card p {
    font-size: 14px;
    line-height: 1.7;
    opacity: 1;
    color: var(--dark-text);
}

.why-list {
    list-style: none;
    margin: 40px 0;
    padding-left: 0;
}

.why-list li {
    padding: 16px 0 16px 30px;
    font-size: 16px;
    color: var(--dark-text);
    border-bottom: 1px solid var(--secondary-light);
    position: relative;
}

.why-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-medium);
    font-weight: bold;
    font-size: 18px;
}

.why-list li:last-child {
    border-bottom: none;
}

/* ============================================
   PORTFOLIO SECTION
   ============================================ */

.portfolio-section {
    padding: 100px 0;
    background-color: var(--white);
}

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

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
}

.portfolio-item:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(26, 26, 26, 0.8) 100%);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 20px;
}

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

.portfolio-overlay h3 {
    font-size: 26px;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-style: italic;
}

.portfolio-overlay p {
    font-size: 14px;
    color: var(--secondary-light);
}

.gallery-hint {
    margin-top: 10px;
    font-size: 12px;
    font-weight: bold;
    opacity: 0.8;
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services-section {
    padding: 100px 0;
    background-color: var(--white);
}

.services-section h2 {
    text-align: center;
    font-size: 48px;
    color: var(--primary-dark);
    margin-bottom: 80px;
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    letter-spacing: -1px;
    font-style: italic;
}

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

.service-card {
    background: var(--white);
    padding: 45px 40px;
    border-radius: 12px;
    border-top: 4px solid var(--primary-medium);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-top: 4px solid var(--primary-dark);
}

.service-icon {
    font-size: 52px;
    margin-bottom: 25px;
    display: inline-block;
}

.service-card h3 {
    color: var(--primary-dark);
    font-size: 24px;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-style: italic;
}

.service-card p {
    color: var(--dark-text);
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 15px;
}

.service-list {
    list-style: none;
}

.service-list li {
    color: var(--primary-dark);
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 14px;
}

.service-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-medium);
    font-weight: bold;
    font-size: 16px;
}

/* ============================================
   PROCESS SECTION
   ============================================ */

.process-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a1a1a 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.process-section h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 80px;
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    letter-spacing: -1px;
    position: relative;
    z-index: 1;
    font-style: italic;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    position: relative;
    z-index: 1;
}

.step {
    text-align: center;
    transition: transform 0.4s ease;
}

.step:hover {
    transform: translateY(-8px);
}

.step-number {
    display: inline-block;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--white) 0%, #f5f5f5 100%);
    color: var(--primary-dark);
    border-radius: 50%;
    line-height: 70px;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.25);
}

.step h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-style: italic;
}

.step p {
    opacity: 0.95;
    font-size: 15px;
    line-height: 1.7;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
    padding: 100px 0;
    background-color: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
}

.contact-info h2,
.contact-form-wrapper h2 {
    color: var(--primary-dark);
    font-size: 36px;
    margin-bottom: 40px;
    border-left: 5px solid var(--primary-medium);
    padding-left: 25px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-style: italic;
}

.info-item {
    margin-bottom: 40px;
}

.info-item h3 {
    color: var(--primary-medium);
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 600;
}

.info-item p {
    color: var(--dark-text);
    line-height: 1.8;
    font-size: 15px;
}

.info-item a {
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.info-item a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

/* ============================================
   CONTACT FORM
   ============================================ */

.contact-form-wrapper {
    background: var(--secondary-light);
    padding: 50px;
    border-radius: 14px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--primary-light);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--primary-dark);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 14px;
    text-transform: capitalize;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid var(--primary-light);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.4s ease;
    background-color: var(--white);
    color: var(--dark-text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-medium);
    box-shadow: 0 0 0 3px rgba(176, 176, 176, 0.1);
}

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

.form-note {
    color: var(--dark-text);
    font-size: 13px;
    margin-top: 8px;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a1a1a 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.cta-section h2 {
    font-size: 44px;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    position: relative;
    z-index: 1;
    font-style: italic;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
    position: relative;
    z-index: 1;
    font-weight: 300;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #0a0a0a 100%);
    color: var(--white);
    padding: 45px 0;
    text-align: center;
    border-top: 4px solid var(--primary-medium);
}

.footer p {
    margin: 10px 0;
    font-size: 14px;
}

.footer p:first-child {
    font-weight: 500;
}

.footer p:last-child {
    font-size: 13px;
    opacity: 0.85;
    letter-spacing: 0.5px;
}

/* ============================================
   GALLERY MODAL
   ============================================ */

.gallery-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.close {
    position: absolute;
    right: 30px;
    top: 20px;
    color: var(--white);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    transition: opacity 0.3s ease;
}

.close:hover {
    opacity: 0.7;
}

.gallery-container {
    position: relative;
    max-width: 900px;
    margin: 50px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 500px;
}

.gallery-container img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 10px;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--white) 0%, #f5f5f5 100%);
    color: var(--primary-dark);
    border: none;
    padding: 15px 20px;
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 1001;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.gallery-nav:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.gallery-nav.prev {
    left: 20px;
}

.gallery-nav.next {
    right: 20px;
}

.gallery-counter {
    text-align: center;
    color: var(--white);
    font-size: 16px;
    margin: 20px 0;
}

.gallery-thumbnails {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    padding: 0 20px;
    flex-wrap: wrap;
    overflow-y: auto;
    max-height: 120px;
}

.thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    border: 3px solid transparent;
    border-radius: 5px;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.thumbnail:hover {
    opacity: 1;
    border-color: var(--white);
}

.thumbnail.active {
    opacity: 1;
    border-color: var(--white);
    box-shadow: 0 0 15px var(--white);
}

/* ============================================
   RESPONSIVE DESIGN (MOBILE)
   ============================================ */

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .logo {
        gap: 8px;
        padding: 6px 12px;
    }

    .logo-img {
        width: 40px;
        height: 40px;
    }

    .logo-text {
        display: none;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, var(--primary-dark) 0%, #1a1a1a 100%);
        flex-direction: column;
        gap: 0;
        display: none;
        list-style: none;
        padding: 20px 0;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 199;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        padding: 0;
    }

    .nav-links a {
        display: block;
        padding: 16px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        transition: all 0.3s ease;
    }

    .nav-links a:hover {
        background: rgba(255, 255, 255, 0.1);
        padding-left: 30px;
    }

    .nav-links a.active::after {
        display: none;
    }

    .navbar .container {
        position: relative;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
        display: none;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .btn {
        display: block;
        margin: 12px 0;
        padding: 14px 35px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .projects-grid,
    .services-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 36px;
    }

    .featured h2,
    .services-section h2,
    .process-section h2 {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .navbar .container {
        flex-direction: column;
        gap: 15px;
    }

    .logo {
        font-size: 20px;
    }

    .hero {
        padding: 80px 0;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .btn {
        padding: 12px 30px;
        font-size: 13px;
    }

    .contact-form-wrapper {
        padding: 30px;
    }
}
