/* ============================================
   RESET & BASE STYLES
   ============================================ */

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

body {
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
    color: #333;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

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

a {
    text-decoration: none;
    color: inherit;
}

/* ============================================
   LAYOUT CONTAINERS
   ============================================ */

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

.container-small {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
    padding: 1rem 1.5rem;
    transition: all 0.3s ease;
}

.header-scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

@media (max-width: 767px) {
    .header-scrolled {
        background: #fff;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.logo-main {
    color: #1a1a1a;
}

.logo-sub {
    color: #1a1a1a;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: #444;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #1a1a1a;
    transform: translateY(-2px);
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #444;
    cursor: pointer;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 16rem;
    background: #ffffff;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    z-index: 1001;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}

.mobile-menu.active {
    transform: translateX(0);
    background: #ffffff;
}

.close-menu {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #444;
    cursor: pointer;
}

.mobile-nav-list {
    list-style: none;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: #ffffff;
    min-height: 100%;
}

.mobile-link {
    font-size: 1.125rem;
    color: #444;
}

.lang-toggle,
.lang-toggle-mobile {
    background: transparent;
    color: #fff;
    border: none;
    padding: 0;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    width: 100px;
}

.lang-toggle span,
.lang-toggle-mobile span {
    flex: 1;
    padding: 0.5rem 0.75rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    text-align: center;
}

.lang-toggle span.active,
.lang-toggle-mobile span.active {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
}

.lang-toggle span:not(.active),
.lang-toggle-mobile span:not(.active) {
    background: #f3f4f6;
    color: #2c3e50;
}

.lang-toggle span:first-child,
.lang-toggle-mobile span:first-child {
    border-radius: 0.25rem 0 0 0.25rem;
}

.lang-toggle span:last-child,
.lang-toggle-mobile span:last-child {
    border-radius: 0 0.25rem 0.25rem 0;
}

.lang-toggle:hover,
.lang-toggle-mobile:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.lang-toggle span:hover,
.lang-toggle-mobile span:hover {
    filter: brightness(1.1);
}

.lang-toggle:active,
.lang-toggle-mobile:active {
    transform: scale(0.98);
}

.lang-toggle-mobile {
    margin-top: 1rem;
    width: 100%;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 5rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

/* ADD YOUR HERO BACKGROUND IMAGE HERE */
.hero-background::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('Photos/1.avif');
    background-size: cover;
    background-position: center;
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(26, 26, 26, 0.9), rgba(45, 45, 45, 0.8));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #fff;
    padding: 0 1.5rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #d1d5db;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

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

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #1a1a1a;
}

.btn-large {
    padding: 1rem 3rem;
}

/* ============================================
   STATS SECTION
   ============================================ */

.stats-section {
    padding: 5rem 0;
    background: #f9fafb;
}

@media (max-width: 767px) {
    .stats-section {
        padding: 3rem 0;
    }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #6b7280;
    font-size: 1rem;
}

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

.services-section {
    padding: 6rem 0;
    background: #fff;
}

@media (max-width: 767px) {
    .services-section {
        padding: 3rem 0;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-card {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img {
    transform: scale(1.1);
}

.service-content {
    padding: 2rem;
}

.service-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: #f3f4f6;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 1.5rem;
    color: #2c3e50;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #6b7280;
}

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

.portfolio-section {
    padding: 6rem 0;
    background: #fff;
}

@media (max-width: 767px) {
    .portfolio-section {
        padding: 3rem 0;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 42rem;
    margin: 0 auto;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.5s ease;
    display: block;
    text-decoration: none;
    color: inherit;
}

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

.portfolio-image-container {
    position: relative;
    height: 20rem;
    overflow: hidden;
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

.portfolio-title {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.portfolio-location,
.portfolio-budget {
    color: #d1d5db;
    margin-bottom: 0.25rem;
}

.portfolio-location i,
.portfolio-budget i {
    margin-right: 0.5rem;
}

.portfolio-view-more {
    color: #fff;
    font-size: 0.938rem;
    font-weight: 600;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.portfolio-view-more i {
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-view-more i {
    transform: translateX(5px);
}

/* ============================================
   PARALLAX SECTION
   ============================================ */

.parallax-section {
    height: 24rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

/* ADD YOUR PARALLAX BACKGROUND IMAGE HERE */
.parallax-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('Photos/3.jpg');
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    opacity: 1;
}

.parallax-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
}

.parallax-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #fff;
    padding: 0 1.5rem;
}

.parallax-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.parallax-text {
    font-size: 1.5rem;
    color: #d1d5db;
    max-width: 48rem;
    margin: 0 auto;
}

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

.about-section {
    padding: 6rem 0;
    background: #f9fafb;
}

@media (max-width: 767px) {
    .about-section {
        padding: 3rem 0;
    }
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.about-paragraph {
    font-size: 1.125rem;
    color: #374151;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.feature-card {
    background: #fff;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.feature-icon {
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
}

.feature-text {
    color: #6b7280;
    line-height: 1.6;
}

/* ============================================
   SHOWCASE SECTION
   ============================================ */

.showcase-section {
    padding: 6rem 0;
    background: #f9fafb;
}

@media (max-width: 767px) {
    .showcase-section {
        padding: 3rem 0;
    }
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.showcase-item {
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.showcase-img {
    width: 100%;
    height: 24rem;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

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

.contact-section {
    padding: 6rem 0;
    background: #f9fafb;
}

@media (max-width: 767px) {
    .contact-section {
        padding: 3rem 0;
    }
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

/* Contact Form Container */
.contact-form-container {
    background: #fff;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form {
    margin: 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.form-input-new {
    width: 100%;
    padding: 0.875rem 1rem;
    background: #f3f4f6;
    border: 1px solid transparent;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.form-input-new:focus {
    outline: none;
    background: #fff;
    border-color: #2c3e50;
    box-shadow: 0 0 0 3px rgba(44, 62, 80, 0.1);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-textarea-new {
    resize: vertical;
    min-height: 100px;
    font-family: 'Montserrat', sans-serif;
}

.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #2c3e50;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-submit:active {
    transform: translateY(0);
}

/* Contact Info Container */
.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: #fff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.info-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    width: 3rem;
    height: 3rem;
    background: #f3f4f6;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.25rem;
    color: #2c3e50;
}

.info-content {
    flex: 1;
}

.info-heading {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #1a1a1a;
}

.info-text {
    font-size: 0.938rem;
    color: #6b7280;
    margin: 0;
}

.info-text-small {
    font-size: 0.875rem;
    color: #9ca3af;
    margin: 0;
}

/* Business Hours */
.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-day {
    font-size: 0.938rem;
    color: #6b7280;
}

.hours-time {
    font-size: 0.938rem;
    font-weight: 600;
    color: #1a1a1a;
}

.hours-closed {
    color: #9ca3af;
}

/* Why Choose Us */
.why-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-size: 0.938rem;
    color: #6b7280;
}

.why-item i {
    color: #10b981;
    font-size: 1rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.form-success {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #d1fae5;
    color: #065f46;
    border-radius: 0.5rem;
    text-align: center;
}

.form-success.hidden {
    display: none;
}

.success-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.success-text {
    font-size: 1.125rem;
    font-weight: 600;
}

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

.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 3rem 0 2rem;
}

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

.footer-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-text {
    color: #9ca3af;
}

.footer-heading {
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links,
.footer-contact {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.5rem;
    color: #9ca3af;
}

.footer-links a {
    transition: color 0.3s ease;
}

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

.footer-contact i {
    margin-right: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    font-size: 1.5rem;
    color: #9ca3af;
    transition: all 0.3s ease;
    display: inline-block;
}

.social-link:hover {
    color: #fff;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
}

/* ============================================
   WHATSAPP FLOAT BUTTON
   ============================================ */

.whatsapp-float {
    position: fixed;
    bottom: 1.875rem;
    right: 1.875rem;
    background: #25D366;
    color: white;
    width: 3.75rem;
    height: 3.75rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.875rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.7);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

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

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

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

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

.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.hidden {
    display: none;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Mobile First - Base styles are for mobile */

/* Small Mobile Adjustments */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .parallax-title {
        font-size: 2rem;
    }

    .parallax-text {
        font-size: 1.125rem;
    }

    .about-title {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .whatsapp-float {
        width: 3rem;
        height: 3rem;
        font-size: 1.5rem;
        bottom: 1.25rem;
        right: 1.25rem;
    }
}

/* Tablets and up */
@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-buttons {
        flex-direction: row;
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .showcase-wide {
        grid-column: span 2;
    }

    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .parallax-section {
        background-attachment: fixed;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-title {
        font-size: 5rem;
    }
}

/* Large Desktop */
@media (min-width: 1440px) {
    .hero-title {
        font-size: 5.5rem;
    }

    .container {
        max-width: 1400px;
    }
}

/* Mobile menu display */
@media (max-width: 767px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-menu {
        background: #ffffff !important;
        opacity: 1 !important;
    }

    .mobile-nav-list {
        background: #ffffff !important;
    }

    .mobile-menu::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
        z-index: -1;
    }

    .mobile-menu.active::before {
        opacity: 1;
        pointer-events: all;
    }

    /* Disable parallax on mobile for better performance */
    .parallax-section::before {
        background-attachment: scroll;
    }

    /* Stack footer columns on mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* Landscape Mobile */
@media (max-width: 767px) and (orientation: landscape) {
    .hero-section {
        min-height: auto;
        padding: 8rem 0 4rem;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Remove hover effects on touch devices */
    .portfolio-item:hover {
        transform: none;
    }

    .portfolio-item:hover .portfolio-img {
        transform: none;
    }

    /* Show overlay on touch without hover */
    .portfolio-overlay {
        transform: translateY(0);
        background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    }

    /* Better button sizing for touch */
    .btn {
        min-height: 44px;
    }

    .nav-link {
        padding: 0.5rem 0;
    }
}