/* FADGA PICTURE - Coming Soon Website CSS */
/* Fixed: Gallery aspect ratio, spacing, and mobile alignment */

/* ========== VARIABLES & RESET ========== */
:root {
    --primary-color: #8B4513;
    --secondary-color: #003366;
    --accent-color: #D4AF37;
    --dark-color: #1a1a2e;
    --light-color: #f8f9fa;
    --text-color: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --instagram-gradient: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    --whatsapp-color: #25D366;
    --mobile-padding: 15px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background-color: var(--light-color);
    overflow-x: hidden;
    line-height: 1.6;
    width: 100%;
}

/* ========== BACKGROUND ANIMATION ========== */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.floating-camera {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(139, 69, 19, 0.1);
    border-radius: 50%;
    animation: float 20s infinite linear;
}

.floating-camera:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    width: 60px;
    height: 60px;
}

.floating-camera:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 5s;
    width: 40px;
    height: 40px;
    background: rgba(0, 51, 102, 0.1);
}

.floating-camera:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 10s;
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.1);
}

.floating-frame {
    position: absolute;
    border: 2px dashed rgba(139, 69, 19, 0.1);
    border-radius: 10px;
    animation: float 25s infinite linear reverse;
}

.floating-frame:nth-child(4) {
    top: 20%;
    right: 10%;
    width: 100px;
    height: 80px;
    animation-delay: 7s;
}

.floating-frame:nth-child(5) {
    bottom: 30%;
    left: 10%;
    width: 80px;
    height: 100px;
    animation-delay: 12s;
    border-color: rgba(0, 51, 102, 0.1);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    33% {
        transform: translateY(-30px) rotate(120deg);
    }
    66% {
        transform: translateY(30px) rotate(240deg);
    }
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

.highlight {
    color: var(--primary-color);
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(212, 175, 55, 0.3);
    z-index: -1;
}

p {
    margin-bottom: 1.2rem;
    color: var(--text-light);
}

/* ========== CONTAINER ========== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--mobile-padding);
}

/* ========== BUTTONS ========== */
.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(139, 69, 19, 0.2);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    transition: width 0.3s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    width: 100%;
}

.btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-service-book {
    background-color: var(--whatsapp-color);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
}

.btn-service-book:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* ========== HEADER - FIXED NAVBAR ALIGNMENT ========== */
.header {
    padding: 12px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    min-height: 60px;
}

/* Logo section - fixed alignment */
.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    flex-shrink: 0;
    padding: 5px 0;
}

.logo h1 {
    font-size: 1.8rem;
    margin-bottom: 2px;
    line-height: 1;
    white-space: nowrap;
    color: var(--secondary-color);
}

.tagline {
    font-size: 0.8rem;
    color: var(--primary-color);
    font-style: italic;
    margin-bottom: 0;
    display: block;
    line-height: 1.2;
}

/* Header CTA - fixed alignment */
.header-cta {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-shrink: 0;
}

.instagram-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--instagram-gradient);
    color: var(--white);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.2);
    white-space: nowrap;
    font-size: 0.95rem;
    line-height: 1;
    height: 40px;
}

.instagram-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(225, 48, 108, 0.3);
}

.instagram-btn i {
    font-size: 1.1rem;
}

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--whatsapp-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    z-index: 1000;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: var(--transition);
    overflow: hidden;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    width: 180px;
    border-radius: 50px;
}

.whatsapp-tooltip {
    position: absolute;
    left: -200px;
    background: var(--white);
    color: var(--text-color);
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.9rem;
    opacity: 0;
    transition: var(--transition);
    white-space: nowrap;
    box-shadow: var(--shadow);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    left: -190px;
}

/* ========== HERO SECTION ========== */
.hero {
    padding: 130px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-content {
    width: 100%;
    max-width: 800px;
    margin-bottom: 50px;
}

.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--gradient);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 50px;
    margin-bottom: 30px;
    font-weight: 600;
    animation: pulse 2s infinite;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.2);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(139, 69, 19, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(139, 69, 19, 0);
    }
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.1;
    color: var(--secondary-color);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-color);
}

/* Countdown */
.countdown-container {
    margin: 40px 0;
    width: 100%;
}

.countdown-container h3 {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.countdown-item {
    background: var(--white);
    padding: 20px 15px;
    border-radius: 10px;
    text-align: center;
    min-width: 90px;
    box-shadow: var(--shadow);
    animation: floatUp 2s ease-in-out;
    position: relative;
    overflow: hidden;
}

.countdown-item .number {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    transition: transform 0.3s ease;
    line-height: 1;
}

.countdown-item .label {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: block;
    margin-top: 5px;
}

@keyframes floatUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

/* ========== HERO IMAGE ========== */
.hero-image {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    background: var(--white);
    border: 10px solid var(--white);
    width: 100%;
}

.image-frame img {
    width: 100%;
    height: auto;
    min-height: 300px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
    aspect-ratio: 3/2; /* Maintain consistent aspect ratio */
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 25px;
    text-align: center;
}

.image-overlay i {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.image-overlay h3 {
    color: var(--white);
    margin-bottom: 5px;
    font-size: 1.5rem;
}

/* ========== SECTIONS COMMON ========== */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 var(--mobile-padding);
}

.section-divider {
    width: 80px;
    height: 4px;
    background: var(--gradient);
    margin: 20px auto;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    padding: 0 var(--mobile-padding);
}

/* ========== ABOUT SECTION ========== */
.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    margin-top: 40px;
}

.about-text {
    width: 100%;
    max-width: 800px;
    text-align: center;
    padding: 0 var(--mobile-padding);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
    padding: 0 var(--mobile-padding);
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
}

/* ========== ABOUT IMAGE STACK - FIXED ASPECT RATIO ========== */
.about-image {
    width: 100%;
    max-width: 800px;
    padding: 0 var(--mobile-padding);
}

.image-stack {
    position: relative;
    width: 100%;
    min-height: 350px;
}

.stack-item {
    position: absolute;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    background: var(--white);
    border: 5px solid var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0; /* Remove padding that distorts images */
}

/* FIXED: Gallery images aspect ratio - using object-fit: cover */
.stack-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    display: block;
    aspect-ratio: 3/2; /* Standard photo aspect ratio */
}

.stack-item-1 {
    top: 0;
    left: 0;
    width: 70%;
    height: auto;
    aspect-ratio: 3/4; /* Portrait aspect for visual variety */
    z-index: 3;
    transform: rotate(-3deg);
}

.stack-item-2 {
    top: 40px;
    right: 0;
    width: 60%;
    height: auto;
    aspect-ratio: 4/3; /* Landscape aspect */
    z-index: 2;
    transform: rotate(2deg);
}

.stack-item-3 {
    bottom: 0;
    left: 15%;
    width: 65%;
    height: auto;
    aspect-ratio: 1/1; /* Square aspect */
    z-index: 1;
    transform: rotate(-1deg);
}

.stack-item:hover {
    z-index: 4;
    transform: rotate(0deg) scale(1.05);
}

/* ========== SERVICES SECTION ========== */
.services {
    background-color: rgba(245, 241, 232, 0.5);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    padding: 0 var(--mobile-padding);
}

.service-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 25px;
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.service-card p {
    flex-grow: 1;
    margin-bottom: 20px;
}

.coming-soon-tag {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin: 15px 0;
}

/* ========== CONTACT SECTION ========== */
.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    margin-top: 40px;
    padding: 0 var(--mobile-padding);
}

.contact-methods {
    margin-top: 40px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding: 25px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact-method:hover {
    transform: translateX(10px);
}

.method-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    flex-shrink: 0;
}

.method-icon.whatsapp {
    background-color: var(--whatsapp-color);
}

.method-icon.instagram {
    background: var(--instagram-gradient);
}

.method-icon.email {
    background: var(--secondary-color);
}

.method-details h4 {
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.method-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    margin-top: 10px;
    transition: var(--transition);
}

.method-link:hover {
    gap: 10px;
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 35px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px 20px 15px 50px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

.form-group i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
}

.form-success {
    display: none;
    text-align: center;
    padding: 30px;
    background: rgba(37, 211, 102, 0.1);
    border-radius: 10px;
    margin-top: 20px;
}

.form-success i {
    font-size: 3rem;
    color: var(--whatsapp-color);
    margin-bottom: 15px;
    display: block;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 60px 0 25px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
    text-align: center;
    padding: 0 var(--mobile-padding);
}

.footer-logo h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    margin: 10px 0;
}

.footer-links h4,
.footer-social h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
}

.social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-icon.instagram {
    background: var(--instagram-gradient);
}

.social-icon.whatsapp {
    background-color: var(--whatsapp-color);
}

.social-icon.email {
    background-color: var(--secondary-color);
}

.social-icon:hover {
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    padding: 25px var(--mobile-padding) 0;
}

.maintenance-note {
    margin: 15px 0;
    color: var(--accent-color);
    font-weight: 600;
}

.developer-credit {
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.3);
}

.developer-name {
    color: var(--accent-color);
    font-weight: 700;
}

/* ========== MAINTENANCE MODAL ========== */
.maintenance-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-content {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    transform: translateY(50px);
    transition: transform 0.3s ease;
}

.modal-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 25px;
    animation: pulse 2s infinite;
}

.modal-content h2 {
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-size: 1.8rem;
}

.modal-content p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.modal-buttons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== RESPONSIVE DESIGN ========== */

/* Tablet Styles */
@media (min-width: 768px) {
    :root {
        --mobile-padding: 20px;
    }
    
    .header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 30px;
        min-height: 70px;
    }
    
    .logo {
        align-items: flex-start;
    }
    
    .logo h1 {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 0.85rem;
    }
    
    .header-cta {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
    
    .instagram-btn {
        height: 45px;
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .hero .container {
        flex-direction: row;
        text-align: left;
    }
    
    .hero-content {
        text-align: left;
        margin-bottom: 0;
        padding-right: 40px;
    }
    
    .coming-soon-badge {
        justify-content: flex-start;
    }
    
    .hero-title {
        font-size: 3.2rem;
    }
    
    .countdown {
        justify-content: flex-start;
    }
    
    .hero-buttons {
        justify-content: flex-start;
    }
    
    .about-content {
        flex-direction: row;
        align-items: center;
        text-align: left;
    }
    
    .about-text {
        text-align: left;
        padding-right: 40px;
        padding-left: 0;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        padding: 0;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        padding: 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr 1fr;
        padding: 0;
    }
    
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        text-align: left;
        padding: 0;
    }
    
    .social-icons {
        justify-content: flex-start;
    }
    
    .footer-badge {
        justify-content: flex-start;
    }
    
    /* Gallery images for tablet */
    .stack-item-1 {
        aspect-ratio: 3/4;
        height: 280px;
        width: 65%;
    }
    
    .stack-item-2 {
        aspect-ratio: 4/3;
        height: 240px;
        width: 55%;
        top: 40px;
    }
    
    .stack-item-3 {
        aspect-ratio: 1/1;
        height: 220px;
        width: 60%;
        left: 20%;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    :root {
        --mobile-padding: 0;
    }
    
    .container {
        padding: 0 40px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    h1 {
        font-size: 3rem;
    }
    
    .hero .container {
        gap: 60px;
    }
    
    .about-content {
        gap: 60px;
    }
    
    .service-card {
        padding: 40px 30px;
    }
    
    .contact-method {
        padding: 30px;
    }
    
    /* Desktop gallery images */
    .stack-item-1 {
        aspect-ratio: 3/4;
        height: 320px;
        width: 70%;
    }
    
    .stack-item-2 {
        aspect-ratio: 4/3;
        height: 280px;
        width: 60%;
        top: 50px;
    }
    
    .stack-item-3 {
        aspect-ratio: 1/1;
        height: 250px;
        width: 65%;
        left: 20%;
    }
    
    .section-header,
    .section-subtitle,
    .about-text,
    .features-grid,
    .services-grid,
    .contact-content,
    .footer-content {
        padding: 0;
    }
}

/* ========== SPECIFIC MOBILE FIXES ========== */
@media (max-width: 767px) {
    /* Header alignment for mobile */
    .header {
        padding: 10px 0;
    }
    
    .header .container {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        justify-content: center;
        min-height: auto;
    }
    
    .logo {
        align-items: center;
        text-align: center;
        width: 100%;
        order: 1;
    }
    
    .logo h1 {
        font-size: 1.6rem;
        margin-bottom: 3px;
        white-space: normal;
        text-align: center;
    }
    
    .tagline {
        font-size: 0.75rem;
        text-align: center;
        line-height: 1.3;
    }
    
    .header-cta {
        order: 2;
        width: 100%;
        justify-content: center;
        margin-top: 5px;
    }
    
    .instagram-btn {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
        height: 42px;
        font-size: 0.9rem;
    }
    
    /* Hero section fixes */
    .hero {
        padding: 140px 0 60px;
    }
    
    .coming-soon-badge {
        padding: 10px 20px;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .countdown {
        gap: 10px;
    }
    
    .countdown-item {
        min-width: 75px;
        padding: 15px 10px;
    }
    
    .countdown-item .number {
        font-size: 1.8rem;
    }
    
    .countdown-item .label {
        font-size: 0.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        padding: 15px 20px;
    }
    
    /* Gallery images - FIXED aspect ratio for mobile */
    .image-stack {
        min-height: 300px;
        margin: 0 auto;
    }
    
    .stack-item {
        padding: 0;
        border: 4px solid var(--white);
    }
    
    .stack-item-1 {
        width: 70%;
        height: auto;
        aspect-ratio: 3/4;
        left: 5%;
    }
    
    .stack-item-2 {
        width: 65%;
        height: auto;
        aspect-ratio: 4/3;
        right: 5%;
        top: 30px;
    }
    
    .stack-item-3 {
        width: 70%;
        height: auto;
        aspect-ratio: 1/1;
        left: 15%;
        bottom: 20px;
    }
    
    .stack-item img {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Services section fixes */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    /* Contact section fixes */
    .contact-form {
        padding: 25px 20px;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .method-details {
        text-align: center;
    }
    
    /* Footer fixes */
    .footer {
        padding: 50px 0 20px;
    }
    
    .footer-badge {
        padding: 8px 15px;
        font-size: 0.85rem;
    }
    
    /* WhatsApp float fixes */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .whatsapp-float:hover {
        width: 50px;
        border-radius: 50%;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    :root {
        --mobile-padding: 12px;
    }
    
    .container {
        padding: 0 var(--mobile-padding);
    }
    
    /* Better header alignment for very small screens */
    .logo h1 {
        font-size: 1.4rem;
        line-height: 1.1;
    }
    
    .tagline {
        font-size: 0.7rem;
        max-width: 90%;
        margin: 0 auto;
    }
    
    .instagram-btn {
        max-width: 220px;
        height: 40px;
        font-size: 0.85rem;
        padding: 8px 15px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .coming-soon-badge {
        font-size: 0.9rem;
        padding: 8px 15px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .countdown-item {
        min-width: 70px;
        padding: 12px 8px;
    }
    
    .countdown-item .number {
        font-size: 1.6rem;
    }
    
    /* Gallery images - Convert to vertical stack on very small screens */
    .stack-item-1,
    .stack-item-2,
    .stack-item-3 {
        position: relative !important;
        width: 100% !important;
        max-width: 280px;
        height: 200px;
        aspect-ratio: 4/3; /* Consistent aspect ratio for mobile */
        transform: none !important;
        margin: 0 auto 20px;
        left: 0 !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        border: 5px solid var(--white);
    }
    
    .image-stack {
        display: flex;
        flex-direction: column;
        min-height: auto;
        gap: 20px;
        padding: 10px 0;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .modal-content {
        padding: 25px 15px;
    }
    
    .modal-buttons {
        flex-direction: column;
    }
    
    .modal-buttons .btn-primary,
    .modal-buttons .btn-secondary {
        width: 100%;
    }
    
    /* Ensure consistent spacing from edges */
    .section-header,
    .section-subtitle,
    .about-text {
        padding-left: var(--mobile-padding);
        padding-right: var(--mobile-padding);
    }
}