/* PROFESSIONAL WEDDING PHOTOGRAPHY WEBSITE - The Weddings Chapter Style */
/* Clean, elegant, and professional design with white background and warm accents */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    width: 100%;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #0d0d0d;
    background-color: #ffffff;
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-weight: 600;
    line-height: 1.2;
    color: #0d0d0d;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.8rem;
    font-weight: 600;
}

h4 {
    font-size: 1.4rem;
    font-weight: 500;
}

p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666666;
    margin-bottom: 1.5rem;
}

/* Container - Full Width Responsive */
.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Desktop screens - use max-width for content readability */
@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
        padding: 0 40px;
    }
}

/* Large tablets and small desktops */
@media (max-width: 1199px) and (min-width: 769px) {
    .container {
        padding: 0 30px;
    }
}

/* Top Bar */
.top-bar {
    background-color: #f8f8f8;
    padding: 12px 0;
    font-size: 0.9rem;
    color: #666;
    border-bottom: 1px solid #e5e5e5;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.top-bar-info {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.top-bar-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-info i {
    color: #e91e63;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: #666;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #e91e63;
}

/* Header */
.header {
    background-color: #ffffff;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #0d0d0d;
    text-decoration: none;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-image {
    height: 50px;
    width: auto;
    max-width: 60px;
    object-fit: contain;
    transition: transform 0.3s ease;
    /* Fallback if image doesn't load */
    background: linear-gradient(135deg, #e91e63, #ff6b9d);
    border-radius: 8px;
}

/* Hide text if image loads successfully */
.logo-image[src*=".png"]:not([src=""]) + .logo-text {
    display: inline;
}

/* Show fallback when image fails */
.logo-image[alt]:empty::before {
    content: "TWC";
    color: white;
    font-weight: bold;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 50px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #0d0d0d;
    letter-spacing: -0.01em;
}

.logo:hover {
    color: #e91e63;
    transition: color 0.3s ease;
}

.logo:hover .logo-image {
    transform: scale(1.05);
}

.logo:hover .logo-text {
    color: #e91e63;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #0d0d0d;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #e91e63;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #e91e63;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.cta-button {
    background: linear-gradient(135deg, #e91e63, #f06292);
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
    color: #ffffff;
}

/* Call Now Button (Red) */
.btn-call-now {
    background: #dc3545;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
    border: none;
    cursor: pointer;
}

.btn-call-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
    color: #ffffff;
}

/* WhatsApp Button (Green) */
.btn-whatsapp {
    background: #25d366;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    border: none;
    cursor: pointer;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: #ffffff;
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #1a1a1a;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.3)), url('images/hero-wedding.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
    position: relative;
}

.hero-subtitle {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 300;
}

.hero-description {
    font-size: 1.2rem;
    color: #f0f0f0;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero h1::after {
    content: '💕';
    position: absolute;
    top: -10px;
    right: -20px;
    font-size: 2rem;
    animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.hero p {
    font-size: 1.3rem;
    color: #f0f0f0;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, #e91e63, #f06292);
    color: #ffffff;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
    color: #ffffff;
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    padding: 15px 35px;
    border: 2px solid #ffffff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: #0d0d0d;
    transform: translateY(-3px);
}

/* Metrics Section */
.metrics {
    background: linear-gradient(135deg, #fce4ec, #f8bbd9);
    padding: 80px 0;
    color: #333333;
}

.metrics-footer {
    margin-top: 30px;
    text-align: center;
}

.google-reviews {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.google-rating, .award-winning, .happy-couples {
    background: rgba(233, 30, 99, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    color: #e91e63;
    font-size: 0.9rem;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.metric-item {
    padding: 20px;
}

.metric-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    display: block;
    margin-bottom: 10px;
}

.metric-label {
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 500;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: #ffffff;
}

.about h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #0d0d0d;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 3rem 0;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(233, 30, 99, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e91e63, #f06292);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #ffffff;
    font-size: 2rem;
}

.feature-item h3 {
    color: #0d0d0d;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-item p {
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

.about-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 4rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(233, 30, 99, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item span {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #ffffff;
    padding: 20px;
    font-weight: 600;
    text-align: center;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 2rem;
    color: #0d0d0d;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #666666;
}

.about-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: #f8f8f8;
}

.services h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #0d0d0d;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.service-card {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-card.featured {
    border: 3px solid #e91e63;
    position: relative;
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, #e91e63, #ad1457);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.package-description {
    color: #666666;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.5;
}

.package-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 20px 0;
    padding: 20px;
    background: rgba(233, 30, 99, 0.05);
    border-radius: 10px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666666;
    font-size: 0.9rem;
}

.detail-item i {
    color: #e91e63;
    width: 16px;
}

.service-card h3 {
    color: #0d0d0d;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e91e63;
    margin: 1.5rem 0;
    font-family: 'Playfair Display', serif;
}

.service-card ul {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.service-card li {
    padding: 8px 0;
    color: #666666;
    position: relative;
    padding-left: 25px;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #e91e63;
    font-weight: bold;
}

.service-card .btn-primary {
    width: 100%;
    margin-top: 2rem;
    padding: 15px;
    font-size: 1rem;
}

/* Reviews Section */
.reviews {
    padding: 100px 0;
    background-color: #ffffff;
}

.reviews h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #0d0d0d;
}

.reviews-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666666;
    margin-bottom: 3rem;
    font-style: italic;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.review-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.1);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(233, 30, 99, 0.15);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e91e63;
}

.default-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e91e63, #f06292);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
}

.reviewer-details h4 {
    color: #0d0d0d;
    margin: 0 0 5px 0;
    font-size: 1.1rem;
}

.event-type {
    color: #e91e63;
    font-weight: 600;
    font-size: 0.9rem;
    display: block;
}

.event-date {
    color: #666666;
    font-size: 0.85rem;
    display: block;
    margin-top: 2px;
}

.review-rating {
    display: flex;
    gap: 2px;
}

.review-rating .fas.fa-star {
    color: #ddd;
    font-size: 0.9rem;
}

.review-rating .fas.fa-star.active {
    color: #ffc107;
}

.review-content p {
    color: #333333;
    font-style: italic;
    line-height: 1.6;
    margin: 0;
}

/* Videos Section */
.videos {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f8f8, #ffffff);
}

.videos h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #0d0d0d;
}

.videos-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666666;
    margin-bottom: 3rem;
    font-style: italic;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.video-item {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(233, 30, 99, 0.2);
}

.video-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-item:hover .video-thumbnail img {
    transform: scale(1.05);
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e91e63, #f06292);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 3rem;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(233, 30, 99, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.video-item:hover .play-button {
    background: rgba(233, 30, 99, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    padding: 20px;
}

.video-info h3 {
    color: #0d0d0d;
    margin: 0 0 10px 0;
    font-size: 1.2rem;
}

.video-info p {
    color: #666666;
    margin: 0 0 10px 0;
    line-height: 1.5;
}

.video-category {
    color: #e91e63;
    font-weight: 600;
    font-size: 0.9rem;
    background: rgba(233, 30, 99, 0.1);
    padding: 4px 12px;
    border-radius: 15px;
}

.no-content {
    text-align: center;
    padding: 60px 20px;
    color: #666666;
    font-style: italic;
}

/* Additional Services Section */
.additional-services {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f8f8, #ffffff);
}

.additional-services h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #0d0d0d;
}

.services-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666666;
    margin-bottom: 3rem;
    font-style: italic;
}

.additional-services .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-item {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(233, 30, 99, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(233, 30, 99, 0.2);
    border-color: #e91e63;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e91e63, #f06292);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #ffffff;
    font-size: 2rem;
}

.service-item h3 {
    color: #0d0d0d;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.service-item p {
    color: #666666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-price {
    color: #e91e63;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background-color: #ffffff;
}

.gallery h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #0d0d0d;
}

.gallery-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666666;
    margin-bottom: 3rem;
    font-style: italic;
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.gallery-filter-btn {
    background: transparent;
    color: #666666;
    padding: 12px 25px;
    border: 2px solid #e5e5e5;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-filter-btn:hover {
    color: #e91e63;
    border-color: #e91e63;
    transform: translateY(-2px);
}

.gallery-filter-btn.active {
    background: linear-gradient(135deg, #e91e63, #ad1457);
    color: #ffffff;
    border-color: #e91e63;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(233, 30, 99, 0.95));
    color: #ffffff;
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.gallery-overlay p {
    color: #ffffff;
    font-size: 1rem;
    margin: 0;
    opacity: 0.9;
}

/* Love Stories Section */
.love-stories {
    padding: 100px 0;
    background: linear-gradient(135deg, #fce4ec, #f8bbd9);
}

.love-stories h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #0d0d0d;
}

.love-stories-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666666;
    margin-bottom: 3rem;
    font-style: italic;
}

.love-stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.love-story-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(233, 30, 99, 0.1);
    transition: all 0.3s ease;
}

.love-story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(233, 30, 99, 0.2);
}

.story-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.couple-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.couple-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e91e63;
}

.couple-details h4 {
    color: #0d0d0d;
    margin: 0 0 5px 0;
    font-size: 1.2rem;
}

.event-type {
    color: #e91e63;
    font-weight: 600;
    font-size: 0.9rem;
    display: block;
}

.event-date {
    color: #666666;
    font-size: 0.85rem;
    display: block;
    margin-top: 2px;
}

.story-rating {
    display: flex;
    gap: 2px;
}

.story-rating .fas.fa-star {
    color: #ddd;
    font-size: 1rem;
}

.story-rating .fas.fa-star.active {
    color: #ffc107;
}

.story-memories {
    margin-bottom: 25px;
}

.memory-photos {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 10px 0;
}

.memory-photos img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.memory-photos img:hover {
    transform: scale(1.1);
}

.story-content p {
    color: #333333;
    font-style: italic;
    line-height: 1.6;
    margin: 0 0 20px 0;
    font-size: 1.1rem;
}

.story-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.story-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666666;
    font-size: 0.9rem;
}

.share-btn {
    background: linear-gradient(135deg, #e91e63, #f06292);
    color: #ffffff;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.video-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #ffffff;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10001;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.video-modal-close:hover {
    background: rgba(233, 30, 99, 0.8);
}

.video-modal iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Portfolio Section */
.portfolio {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f8f8, #ffffff);
    position: relative;
    overflow: hidden;
}

.portfolio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hearts" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M10,3.3C8.5,1.9 6.4,1.9 4.9,3.3C3.4,4.7 3.4,6.8 4.9,8.2L10,13.3L15.1,8.2C16.6,6.8 16.6,4.7 15.1,3.3C13.6,1.9 11.5,1.9 10,3.3Z" fill="%23e91e63" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23hearts)"/></svg>');
    pointer-events: none;
}

.portfolio h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #0d0d0d;
}

.portfolio-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666666;
    margin-bottom: 2rem;
    font-style: italic;
}

/* Portfolio Filter */
.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    color: #666666;
    padding: 12px 25px;
    border: 2px solid #e5e5e5;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.filter-btn:hover {
    color: #e91e63;
    border-color: #e91e63;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, #e91e63, #ad1457);
    color: #ffffff;
    border-color: #e91e63;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.filter-btn.active:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.portfolio-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(233, 30, 99, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
    background-color: #ffffff;
    border: 2px solid transparent;
}

.portfolio-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(233, 30, 99, 0.25);
    border-color: #e91e63;
}

.portfolio-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.1), rgba(240, 98, 146, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.portfolio-item:hover::before {
    opacity: 1;
}

.portfolio-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(233, 30, 99, 0.95));
    color: #ffffff;
    padding: 40px 25px 25px;
    transform: translateY(100%);
    transition: all 0.4s ease;
    z-index: 2;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
    background: linear-gradient(transparent, rgba(233, 30, 99, 0.98));
}

.portfolio-overlay h3 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.portfolio-overlay p {
    color: #ffffff;
    font-size: 1rem;
    margin: 0;
    font-style: italic;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.portfolio-cta {
    margin-top: 40px;
}

.portfolio-cta .btn-primary {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Add-ons Section */
.add-ons {
    padding: 80px 0;
    background-color: #ffffff;
}

.add-ons h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #0d0d0d;
}

.add-ons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.add-on-item {
    display: flex;
    align-items: center;
    padding: 25px;
    background-color: #f8f8f8;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid #e5e5e5;
}

.add-on-item:hover {
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.add-on-icon {
    font-size: 2rem;
    color: #e91e63;
    margin-right: 20px;
    min-width: 50px;
}

.add-on-content h4 {
    color: #0d0d0d;
    margin-bottom: 0.5rem;
}

.add-on-content p {
    color: #666666;
    margin: 0;
    font-size: 0.95rem;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background-color: #f8f8f8;
}

.faq h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #0d0d0d;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #ffffff;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e5e5;
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #0d0d0d;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f8f8;
}

.faq-question i {
    color: #e91e63;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: #ffffff;
}

.faq-answer.active {
    padding: 0 30px 25px 30px;
    max-height: 200px;
}

.faq-answer p {
    color: #666666;
    margin: 0;
    line-height: 1.6;
}

/* Call to Action Section */
.cta-section {
    background: linear-gradient(135deg, #e91e63, #ad1457);
    padding: 80px 0;
    color: #ffffff;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-schedule {
    background: transparent;
    color: #ffffff;
    padding: 12px 30px;
    border: 2px solid #ffffff;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-schedule:hover {
    background-color: #ffffff;
    color: #e91e63;
    transform: translateY(-2px);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: #ffffff;
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #0d0d0d;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info h3 {
    color: #0d0d0d;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 20px;
    background-color: #f8f8f8;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 1.5rem;
    color: #e91e63;
    margin-right: 20px;
    min-width: 30px;
}

.contact-details h4 {
    color: #0d0d0d;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-details p {
    color: #666666;
    margin: 0;
    font-size: 0.95rem;
}

/* Contact Form */
.contact-form {
    background-color: #f8f8f8;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #0d0d0d;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #ffffff;
    color: #1a1a1a;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e91e63;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #e91e63, #f06292);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Footer */
.footer {
    background-color: #0d0d0d;
    color: #ffffff;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-section p,
.footer-section a {
    color: #cccccc;
    text-decoration: none;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #e91e63;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
    color: #999;
}

.footer-bottom a {
    color: #e91e63;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
        width: 100%;
    }
    
    .logo {
        font-size: 1.5rem;
        gap: 8px;
    }
    
    .logo-image {
        height: 40px;
        max-width: 45px;
    }
    
    .logo-text {
        font-size: 1.4rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        gap: 20px;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .top-bar .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .top-bar-info {
        justify-content: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .add-ons-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .portfolio-item img {
        height: 250px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
}

/* Enhanced Mobile Responsive Design */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
        width: 100%;
    }
    
    /* Logo responsive for smartphones */
    .logo {
        font-size: 1.2rem;
        gap: 6px;
    }
    
    .logo-image {
        height: 30px;
        max-width: 35px;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    /* Hero section smartphone optimization */
    .hero {
        padding: 20px 0;
        min-height: 70vh;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .hero p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0 15px;
    }
    
    /* Button optimization for smartphones */
    .btn-primary,
    .btn-secondary {
        padding: 12px 20px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 280px;
        margin: 5px auto;
        display: block;
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
        align-items: center;
        width: 100%;
    }
    
    /* Contact form smartphone friendly */
    .contact-form {
        padding: 20px 15px;
        margin: 0 10px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* Service cards smartphone layout */
    .service-card {
        padding: 25px 15px;
        margin: 0 5px 15px 5px;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }
    
    /* Navigation smartphone friendly */
    .nav-menu {
        padding: 15px;
        gap: 15px;
    }
    
    .nav-menu li a {
        padding: 12px 0;
        font-size: 1.1rem;
    }
    
    /* Portfolio grid smartphone */
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 10px;
    }
    
    .portfolio-item {
        margin: 0 0 15px 0;
    }
    
    .portfolio-item img {
        height: 200px;
        width: 100%;
    }
    
    /* FAQ smartphone friendly */
    .faq-question {
        padding: 15px;
        font-size: 0.95rem;
    }
    
    .faq-answer {
        padding: 0 15px;
        font-size: 0.9rem;
    }
    
    /* Footer smartphone layout */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .footer-section h3 {
        font-size: 1.2rem;
    }
    
    /* Top bar smartphone */
    .top-bar {
        font-size: 0.8rem;
        padding: 8px 0;
    }
    
    .top-bar-info {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .top-bar-info span {
        font-size: 0.8rem;
    }
    
    /* Social links smartphone */
    .social-links {
        gap: 20px;
        justify-content: center;
        margin-top: 10px;
    }
    
    .social-links a {
        font-size: 1.2rem;
        padding: 8px;
    }
}

/* Extra small smartphones (360px and below) */
@media (max-width: 360px) {
    .container {
        padding: 0 8px;
    }
    
    .hero h1 {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 10px 15px;
        font-size: 0.85rem;
    }
    
    .service-card {
        padding: 20px 12px;
    }
    
    .contact-form {
        padding: 15px 10px;
    }
}
    
    .btn-primary,
    .btn-secondary {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .add-on-item {
        padding: 20px;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-answer.active {
        padding: 0 20px 20px 20px;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .portfolio-item img {
        height: 200px;
    }
    
    .portfolio-overlay {
        padding: 20px 15px 15px;
    }
    
    .portfolio-overlay h3 {
        font-size: 1.1rem;
    }
    
    .portfolio-overlay p {
        font-size: 0.9rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #e91e63;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Success Message */
.success-message {
    background-color: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    border: 1px solid #c3e6cb;
    display: none;
}

.success-message.show {
    display: block;
}

/* Error Message */
.error-message {
    background-color: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    border: 1px solid #f5c6cb;
    display: none;
}

.error-message.show {
    display: block;
}

/* Additional Responsive Breakpoints for Complete Coverage */

/* Extra Large Screens */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
        padding: 0 50px;
    }
}

/* Large Tablets Portrait */
@media (max-width: 1024px) and (min-width: 769px) {
    .container {
        padding: 0 25px;
        width: 100%;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
    }
}

/* Small Tablets Landscape */
@media (max-width: 1023px) and (min-width: 769px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .add-ons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* Ensure Full Width on All Devices */
* {
    max-width: 100%;
}

/* Remove any potential margin/padding causing blank spaces */
html, body {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    overflow-x: hidden !important;
}

/* Ensure sections take full width */
section {
    width: 100%;
}

.top-bar, .header, .hero, .footer {
    width: 100%;
}
