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

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.7;
    color: #3d3d3d;
    background: #fafaf8;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Navigation */
nav {
    background: #fff;
    padding: 1.5rem 2rem;
    position: fixed;
    width: 100%;
    max-width: 100vw;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    overflow-x: hidden;
}

nav.scrolled {
    padding: 1rem 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

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

nav .logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2d5f3f;
    font-style: italic;
    transition: transform 0.3s ease;
}

nav .logo:hover {
    transform: scale(1.05);
}

nav .logo span {
    color: #8b7355;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

nav a {
    color: #3d3d3d;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2d5f3f;
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

nav a:hover {
    color: #2d5f3f;
    transform: translateY(-2px);
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #2d5f3f;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f5f1e8 0%, #e8ded0 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '📷';
    position: absolute;
    font-size: 15rem;
    opacity: 0.03;
    top: 10%;
    right: 10%;
    transform: rotate(-15deg);
    animation: float 6s ease-in-out infinite;
}

.hero::after {
    content: '📷';
    position: absolute;
    font-size: 12rem;
    opacity: 0.03;
    bottom: 15%;
    left: 5%;
    transform: rotate(25deg);
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(-15deg);
    }
    50% {
        transform: translateY(-10px) rotate(-15deg);
    }
}

.hero-content {
    max-width: 900px;
    width: 100%;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
    padding: 0 2rem;
    box-sizing: border-box;
}

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

.hero-logo {
    width: 280px;
    margin: 0 auto 2rem;
    animation: zoomIn 0.8s ease-out;
}

.hero-logo img {
    width: 100%;
    height: auto;
    display: block;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #2d5f3f;
    font-style: italic;
    font-weight: 700;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-content .tagline {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #6b5d4f;
    font-style: italic;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #5d5d5d;
    font-family: 'Arial', sans-serif;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    font-size: 1rem;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.btn-primary {
    background: #2d5f3f;
    color: #fff;
    box-shadow: 0 4px 15px rgba(45, 95, 63, 0.3);
}

.btn-primary:hover {
    background: #1f4429;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(45, 95, 63, 0.4);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: #2d5f3f;
    border: 3px solid #2d5f3f;
    margin-left: 1rem;
}

.btn-secondary:hover {
    background: #2d5f3f;
    color: #fff;
}

/* Sections */
section {
    padding: 5rem 0;
    width: 100%;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 0 2rem;
    box-sizing: border-box;
}

h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #2d5f3f;
    font-style: italic;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: #8b7355;
    font-size: 1.3rem;
    margin-bottom: 4rem;
    font-style: italic;
}

/* Fade in on scroll animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

/* About Section */
.about {
    background: #fff;
}

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

.about-text {
    font-size: 1.15rem;
    line-height: 2;
    color: #4d4d4d;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-text strong {
    color: #2d5f3f;
    font-style: italic;
}

.about-image {
    background: linear-gradient(135deg, #2d5f3f, #1f4429);
    height: 500px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10rem;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.about-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 30px,
        rgba(255,255,255,0.03) 30px,
        rgba(255,255,255,0.03) 60px
    );
}

/* Services Section */
.services {
    background: linear-gradient(135deg, #f5f1e8 0%, #e8ded0 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    width: 100%;
}

.service-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    text-align: center;
    border: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: #2d5f3f;
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2d5f3f;
    font-style: italic;
}

.service-card p {
    color: #5d5d5d;
    line-height: 1.8;
    font-family: 'Arial', sans-serif;
}

/* Portfolio Section */
.portfolio {
    background: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    width: 100%;
}

.gallery-item {
    background: #c9b99a;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Packages Section */
.packages {
    background: linear-gradient(135deg, #f5f1e8 0%, #e8ded0 100%);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    width: 100%;
}

.package-card {
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    text-align: center;
    border: 3px solid transparent;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: #2d5f3f;
}

.package-card h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2d5f3f;
    font-style: italic;
}

.package-card .price {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2d5f3f;
    margin-bottom: 0.5rem;
    font-family: 'Arial', sans-serif;
}

.package-card .price-note {
    font-size: 1rem;
    color: #8b7355;
    margin-bottom: 2rem;
    font-family: 'Arial', sans-serif;
}

.package-card ul {
    list-style: none;
    margin-bottom: 2.5rem;
    text-align: left;
}

.package-card ul li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    color: #5d5d5d;
    font-family: 'Arial', sans-serif;
}

.package-card ul li::before {
    content: '✿';
    position: absolute;
    left: 0;
    color: #2d5f3f;
    font-size: 1.2rem;
}

.package-note {
    background: rgba(45, 95, 63, 0.05);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 3rem;
    text-align: center;
    border-left: 4px solid #2d5f3f;
}

.package-note p {
    color: #4d4d4d;
    font-size: 1rem;
    line-height: 1.8;
    font-family: 'Arial', sans-serif;
}

/* Testimonials Section */
.testimonials {
    background: #2d5f3f;
    color: #fff;
}

.testimonials h2 {
    color: #fff;
}

.testimonials .section-subtitle {
    color: #c9e4c9;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    width: 100%;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.testimonial-card .stars {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-card .author {
    font-weight: 700;
    color: #c9e4c9;
    font-family: 'Arial', sans-serif;
}

/* Contact Section */
.contact {
    background: #fff;
}

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

.contact-info {
    background: linear-gradient(135deg, #f5f1e8 0%, #e8ded0 100%);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.contact-info h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2d5f3f;
    font-style: italic;
}

.info-item {
    margin-bottom: 2rem;
    font-family: 'Arial', sans-serif;
}

.info-item strong {
    display: block;
    color: #2d5f3f;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-item p {
    color: #5d5d5d;
    line-height: 1.8;
}

.contact-form {
    background: linear-gradient(135deg, #f5f1e8 0%, #e8ded0 100%);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.contact-form h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2d5f3f;
    font-style: italic;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: #3d3d3d;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #c9b99a;
    background: #fff;
    color: #3d3d3d;
    font-family: 'Georgia', serif;
    font-size: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #2d5f3f;
    box-shadow: 0 0 0 3px rgba(45, 95, 63, 0.1);
    transform: translateY(-2px);
}

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

/* Footer */
footer {
    background: linear-gradient(135deg, #1f4429 0%, #2d5f3f 100%);
    color: #c9e4c9;
    padding: 4rem 0 0;
    font-family: 'Arial', sans-serif;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-section h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-family: 'Georgia', serif;
    font-style: italic;
}

/* Footer About Section */
.footer-logo {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-family: 'Georgia', serif;
    font-style: italic;
    color: #fff;
    font-weight: 700;
}

.footer-tagline {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 1rem;
    font-style: italic;
    font-family: 'Georgia', serif;
}

.footer-description {
    color: #a8c9a8;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Footer Links */
.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links ul li a {
    color: #c9e4c9;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 1.5rem;
}

.footer-links ul li a::before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: #fff;
    padding-left: 2rem;
}

.footer-links ul li a:hover::before {
    opacity: 1;
    left: 0.5rem;
}

/* Footer Contact */
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #c9e4c9;
}

.contact-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.footer-contact-item a {
    color: #c9e4c9;
    text-decoration: none;
    transition: color 0.3s ease;
    word-break: break-word;
}

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

/* Social Links */
.footer-social {
    margin-top: 2rem;
}

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

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link.facebook:hover {
    background: #1877f2;
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* Footer Bottom */
.footer-bottom {
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #a8c9a8;
    margin: 0;
    font-size: 0.9rem;
}

.developer-credit {
    font-size: 0.85rem;
}

.developer-credit p {
    margin: 0;
}

.developer-credit a {
    color: #c9e4c9;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

.developer-credit a:hover {
    color: #fff;
}

/* Responsive Design */
@media (max-width: 1024px) {
    nav ul {
        gap: 1.8rem;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 3rem;
    }

    .gallery-grid,
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1rem 0;
    }

    nav .container {
        flex-wrap: wrap;
        position: relative;
        padding: 0 1.5rem;
        max-width: 100%;
    }

    .container {
        padding: 0 1.5rem;
    }

    section {
        padding: 3rem 0;
    }

    /* Footer responsive */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding-bottom: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 0;
    }

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

    .menu-toggle {
        display: flex;
        order: 2;
        z-index: 1001;
        margin-left: auto;
        flex-shrink: 0;
    }

    nav .logo {
        order: 1;
        flex: 0 1 auto;
        max-width: calc(100% - 50px);
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    nav ul {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0;
        margin-top: 1rem;
        padding: 1rem 0 0 0;
        border-top: 2px solid #e8ded0;
        order: 3;
    }

    nav ul li {
        width: 100%;
        text-align: center;
        padding: 0.75rem 0;
        border-bottom: 1px solid #f5f1e8;
    }

    nav ul li:last-child {
        border-bottom: none;
    }

    nav ul.active {
        display: flex;
    }

    nav a {
        display: block;
        padding: 0.5rem;
        font-size: 1.1rem;
    }

    nav a::after {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 2rem 0 3rem;
        margin-top: 60px;
    }

    .hero-content {
        padding: 0 1.5rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.3;
    }

    .hero-content .tagline {
        font-size: 1.1rem;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-logo {
        width: 180px;
        margin-bottom: 1.5rem;
    }

    .hero::before,
    .hero::after {
        font-size: 8rem;
        opacity: 0.02;
    }

    h2 {
        font-size: 2.5rem;
    }

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

    section {
        padding: 3rem 1.5rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-image {
        height: 350px;
    }

    .services-grid,
    .gallery-grid,
    .packages-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .gallery-item {
        height: 300px;
    }

    .btn-secondary {
        margin-left: 0;
        margin-top: 1rem;
        display: block;
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    .btn {
        padding: 1rem 2.5rem;
        font-size: 0.95rem;
        display: inline-block;
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .btn-primary {
        display: block;
        margin: 0 auto;
    }

    .hero-content > div {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .service-card h3,
    .package-card h3 {
        font-size: 1.8rem;
    }

    .package-card .price {
        font-size: 2.5rem;
    }

    .contact-info,
    .contact-form {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 0.75rem 0;
    }

    nav .container {
        padding: 0 1rem;
    }

    .container {
        padding: 0 1rem;
    }

    nav .logo {
        font-size: 1.1rem;
        max-width: calc(100% - 45px);
    }

    .menu-toggle {
        gap: 4px;
    }

    .menu-toggle span {
        width: 22px;
        height: 2.5px;
    }

    .hero {
        padding: 1.5rem 0 2.5rem;
    }

    .hero-content {
        padding: 0 1rem;
    }

    section {
        padding: 2.5rem 0;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
    }

    .hero-content .tagline {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .hero-logo {
        width: 150px;
        margin-bottom: 1rem;
    }

    h2 {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
    }

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

    section {
        padding: 2.5rem 1rem;
    }

    .about-text {
        font-size: 0.95rem;
        line-height: 1.8;
    }

    .about-image {
        height: 300px;
        font-size: 8rem;
    }

    .gallery-item {
        height: 250px;
        font-size: 4rem;
    }

    .service-icon {
        font-size: 3rem;
    }

    .service-card,
    .package-card,
    .testimonial-card {
        padding: 1.5rem;
    }

    .service-card h3 {
        font-size: 1.6rem;
    }

    .package-card h3 {
        font-size: 2rem;
    }

    .package-card .price {
        font-size: 2.2rem;
    }

    .contact-info h3,
    .contact-form h3 {
        font-size: 2rem;
    }

    .contact-info,
    .contact-form {
        padding: 1.5rem;
    }

    .info-item strong {
        font-size: 1rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .footer-logo {
        font-size: 1.6rem;
    }

    .footer-tagline {
        font-size: 1rem;
    }

    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .footer-links ul li a {
        font-size: 0.95rem;
    }

    .footer-contact-item {
        font-size: 0.9rem;
    }

    .footer-bottom p {
        font-size: 0.85rem;
    }

    .developer-credit {
        font-size: 0.8rem;
    }
}

/* Extra small devices (iPhone SE, etc.) */
@media (max-width: 375px) {
    nav {
        padding: 0.75rem 0;
    }

    nav .container {
        padding: 0 0.75rem;
    }

    .container {
        padding: 0 0.75rem;
    }

    nav .logo {
        font-size: 1rem;
        max-width: calc(100% - 40px);
    }

    .menu-toggle span {
        width: 20px;
    }

    .hero-content {
        padding: 0 0.75rem;
    }

    .hero-content h1 {
        font-size: 1.6rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .btn {
        padding: 0.9rem 2rem;
        font-size: 0.9rem;
    }

    section {
        padding: 2rem 0;
    }

    .service-card,
    .package-card,
    .testimonial-card,
    .contact-info,
    .contact-form {
        padding: 1.25rem;
    }

    .gallery-item {
        height: 220px;
    }

    .footer-logo {
        font-size: 1.4rem;
    }

    .footer-description {
        font-size: 0.9rem;
    }

    .social-link {
        width: 40px;
        height: 40px;
    }

    .social-link svg {
        width: 18px;
        height: 18px;
    }
}
