/* ===================================
   LUYIPACK - Premium Perfume Packaging
   Middle Eastern Inspired Design
   =================================== */

/* ========== CSS Variables ========== */
:root {
    --primary-color: #c9a961;        /* Luxurious gold */
    --primary-dark: #a88b4a;
    --primary-light: #d4b876;
    --secondary-color: #2c3e50;      /* Deep navy */
    --accent-color: #8b7355;         /* Warm brown */
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --background-light: #fafafa;
    --background-cream: #f5f1ea;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-hover: 0 4px 20px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

/* ========== Global Styles ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* ========== Typography ========== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

.lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* ========== Buttons ========== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background: #34495e;
    transform: translateY(-2px);
}

.btn-light {
    background: var(--white);
    color: var(--primary-color);
}

.btn-light:hover {
    background: var(--background-cream);
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* ========== Section Utilities ========== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    margin-bottom: 15px;
}

.divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    margin: 0 auto 20px;
}

.text-center {
    text-align: center;
}

/* ========== Header & Navigation ========== */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0;
}

.logo p {
    font-size: 0.75rem;
    color: var(--text-light);
    margin: 0;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* ========== Hero Section ========== */
.hero {
    position: relative;
    height: 600px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero::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 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,144C960,149,1056,139,1152,128C1248,117,1344,107,1392,101.3L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* ========== Welcome Section ========== */
.welcome {
    padding: 80px 0;
    background: var(--white);
}

.welcome-content {
    max-width: 900px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    text-align: center;
    padding: 30px;
    background: var(--background-cream);
    border-radius: 10px;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

/* ========== Product Showcase ========== */
.product-showcase {
    padding: 80px 0;
    background: var(--background-light);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.product-item {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.product-image {
    height: 280px;
    background: var(--background-cream);
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-item h3 {
    padding: 20px 20px 10px;
    color: var(--secondary-color);
}

.product-item p {
    padding: 0 20px 20px;
    color: var(--text-light);
}

/* ========== Why Choose Us ========== */
.why-choose {
    padding: 80px 0;
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.why-item {
    text-align: center;
}

.why-item i {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.why-item h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

/* ========== CTA Section ========== */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a252f 100%);
    color: var(--white);
    text-align: center;
}

.cta h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* ========== Page Header ========== */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1.2rem;
}

/* ========== Products Page ========== */
.products-section {
    padding: 60px 0;
}

.product-category {
    margin-bottom: 80px;
}

.category-title {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-color);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.product-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-card:hover {
    box-shadow: var(--shadow-hover);
}

.product-card .product-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-info {
    padding: 25px;
}

.product-info h4 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.product-features {
    margin-top: 15px;
}

.product-features li {
    padding: 5px 0;
    color: var(--text-light);
}

.product-features i {
    color: var(--primary-color);
    margin-right: 8px;
}

.services-highlight {
    background: var(--background-cream);
    padding: 60px;
    border-radius: 15px;
    margin-top: 60px;
    margin-bottom: 60px;
}

.services-highlight h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--secondary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.service-item {
    text-align: center;
}

.service-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-item h4 {
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.products-cta {
    text-align: center;
    padding: 60px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    border-radius: 15px;
    color: var(--white);
}

.products-cta h3 {
    color: var(--white);
    margin-bottom: 15px;
}

.products-cta p {
    font-size: 1.1rem;
    margin-bottom: 25px;
}

/* ========== About Page ========== */
.about-intro {
    padding: 60px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.about-content h2 {
    margin-bottom: 10px;
}

.about-content p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.mission-vision {
    padding: 60px 0;
    background: var(--background-light);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.mv-card {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
}

.mv-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.mv-card h3 {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.what-we-do {
    padding: 60px 0;
}

.services-detailed {
    max-width: 900px;
    margin: 0 auto;
}

.service-detail {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
}

.service-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    opacity: 0.3;
    flex-shrink: 0;
}

.service-content h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.service-content ul {
    list-style: none;
}

.service-content ul li {
    padding: 5px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
}

.service-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.our-values {
    padding: 60px 0;
    background: var(--background-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.value-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.value-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.value-card h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.why-choose-detailed {
    padding: 60px 0;
}

.advantages {
    max-width: 900px;
    margin: 0 auto;
}

.advantage-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.advantage-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.advantage-content h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

/* ========== Contact Page ========== */
.contact-section {
    padding: 60px 0;
}

.contact-intro {
    text-align: center;
    margin-bottom: 60px;
}

.contact-intro h2 {
    margin-bottom: 15px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info h3 {
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.contact-method {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.whatsapp-icon {
    color: #25D366;
}

.contact-details h4 {
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.contact-details p {
    color: var(--text-light);
}

.contact-details a {
    color: var(--primary-color);
    font-weight: 500;
}

.contact-details a:hover {
    text-decoration: underline;
}

.small-text {
    font-size: 0.9rem;
    font-style: italic;
}

.chinese {
    font-size: 0.95rem;
}

.social-contact {
    margin-top: 40px;
}

.social-contact h4 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.social-links-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: var(--background-light);
    border-radius: 8px;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--white);
}

.social-link i {
    font-size: 1.3rem;
}

/* ========== Contact Form ========== */
.contact-form-container {
    background: var(--background-cream);
    padding: 40px;
    border-radius: 10px;
}

.contact-form-container h3 {
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
}

.form-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 15px;
    text-align: center;
}

/* ========== Quick Contact ========== */
.quick-contact {
    padding: 60px 0;
    background: var(--background-light);
}

.quick-contact h2 {
    text-align: center;
    margin-bottom: 40px;
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.quick-contact-card {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.quick-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.quick-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.whatsapp-card .quick-icon {
    color: #25D366;
}

.quick-contact-card h3 {
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.quick-contact-card p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.quick-link {
    color: var(--primary-color);
    font-weight: 500;
}

/* ========== FAQ Section ========== */
.faq-section {
    padding: 60px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.faq-item {
    background: var(--background-cream);
    padding: 25px;
    border-radius: 10px;
}

.faq-item h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.faq-item h3 i {
    color: var(--primary-color);
    margin-right: 10px;
}

.faq-item p {
    color: var(--text-light);
}

/* ========== Business Hours ========== */
.business-hours {
    padding: 60px 0;
    background: var(--background-light);
}

.business-hours h2 {
    text-align: center;
    margin-bottom: 40px;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.hours-item {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
}

.hours-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.hours-item h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.hours-item p {
    color: var(--text-light);
    margin-bottom: 5px;
}

.timezone {
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 10px;
}

/* ========== Footer ========== */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.footer-section p {
    margin-bottom: 10px;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* ========== Floating Contact Button ========== */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: var(--transition);
}

.floating-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.contact-options {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow-hover);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    min-width: 180px;
}

.floating-contact.active .contact-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    border-radius: 8px;
    color: var(--text-dark);
    transition: var(--transition);
    margin-bottom: 5px;
}

.contact-option:last-child {
    margin-bottom: 0;
}

.contact-option:hover {
    background: var(--background-light);
}

.contact-option.phone i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.contact-option.whatsapp {
    background: #25D366;
    color: var(--white);
}

.contact-option.whatsapp:hover {
    background: #1fa855;
}

.contact-option.whatsapp i {
    font-size: 1.3rem;
}

/* ========== Responsive Design ========== */
@media (max-width: 768px) {
    /* Typography */
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    /* Navigation */
    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: var(--transition);
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-menu li {
        margin-bottom: 10px;
    }

    /* Hero */
    .hero {
        height: 400px;
    }

    /* Grids */
    .features-grid,
    .product-grid,
    .why-grid,
    .values-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }

    .about-grid,
    .mv-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* Sections */
    .welcome,
    .product-showcase,
    .why-choose,
    .cta,
    .products-section,
    .about-intro,
    .mission-vision,
    .what-we-do,
    .our-values,
    .contact-section,
    .quick-contact,
    .faq-section,
    .business-hours {
        padding: 40px 0;
    }

    .page-header {
        padding: 50px 0 40px;
    }

    /* Service Details */
    .service-detail {
        flex-direction: column;
        gap: 15px;
    }

    .service-number {
        font-size: 2rem;
    }

    /* Advantage Items */
    .advantage-item {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    /* Contact Method */
    .contact-method {
        flex-direction: column;
        text-align: center;
    }

    /* Services Highlight */
    .services-highlight {
        padding: 40px 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Products CTA */
    .products-cta {
        padding: 40px 20px;
    }

    /* Contact Form */
    .contact-form-container {
        padding: 30px 20px;
    }

    /* Social Links */
    .social-links-large {
        grid-template-columns: 1fr;
    }

    /* FAQ Grid */
    .faq-grid {
        grid-template-columns: 1fr;
    }

    /* Floating Button */
    .floating-contact {
        bottom: 20px;
        right: 20px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .btn {
        padding: 10px 20px;
    }

    .btn-large {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}
