:root {
    --primary-color: #C9ADA7;
    --secondary-color: #9A8C98;
    --accent-color: #4A4E69;
    --dark-color: #22223B;
    --light-color: #F2E9E4;
    --white: #FFFFFF;
    --text-dark: #333333;
    --text-light: #666666;
    --success: #4CAF50;
    --error: #F44336;
    --gradient-primary: linear-gradient(135deg, #C9ADA7 0%, #9A8C98 100%);
    --gradient-accent: linear-gradient(135deg, #4A4E69 0%, #22223B 100%);
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.2);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    flex: 1;
}

.site-logo {
    height: 126px;
    width: auto;
    max-width: 525px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.site-logo:hover {
    transform: scale(1.05);
}

.logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.logo-text-main {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
    letter-spacing: 4px;
}

.logo-text-sub {
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--secondary-color);
    margin-top: -5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu a:not(.btn):hover,
.nav-menu a.active:not(.btn) {
    color: var(--primary-color);
}

.nav-menu a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:not(.btn):hover::after,
.nav-menu a.active:not(.btn)::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    transition: var(--transition);
}

.hero {
    position: relative;
    background: var(--gradient-primary);
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--white);
}

.hero-overlay {
    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,138.7C960,139,1056,117,1152,112C1248,107,1344,117,1392,122.7L1440,128L1440,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>') no-repeat bottom;
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 4rem 0;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 0;
}

.brand-name {
    display: block;
    letter-spacing: 8px;
}

.brand-subtitle {
    font-size: 1rem;
    letter-spacing: 4px;
    font-weight: 400;
}

.hero-subtitle {
    font-size: 0.9rem;
    letter-spacing: 3px;
    margin: 1rem 0;
    opacity: 0.9;
}

.hero-headline {
    font-size: 2rem;
    margin: 2rem 0 1rem;
}

.hero-description {
    font-size: 1.1rem;
    max-width: 600px;
    margin-bottom: 2rem;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.hero-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.hero-feature i {
    font-size: 2rem;
    color: var(--light-color);
}

.hero-feature p {
    font-size: 0.95rem;
}

.hero-feature small {
    display: block;
    opacity: 0.8;
    font-size: 0.85rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
}

.hero-tagline {
    margin-top: 3rem;
}

.hero-tagline p {
    font-size: 1.2rem;
    font-style: italic;
    margin: 0.5rem 0;
}

.hero-values {
    font-size: 0.9rem;
    opacity: 0.9;
}

.hero-decoration {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 400px;
    height: 400px;
    opacity: 0.1;
}

.flower-pattern {
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="30" fill="white" opacity="0.3"/><path d="M50,20 Q60,30 50,40 Q40,30 50,20" fill="white" opacity="0.3"/><path d="M50,60 Q60,70 50,80 Q40,70 50,60" fill="white" opacity="0.3"/><path d="M20,50 Q30,60 40,50 Q30,40 20,50" fill="white" opacity="0.3"/><path d="M60,50 Q70,60 80,50 Q70,40 60,50" fill="white" opacity="0.3"/></svg>');
    background-repeat: repeat;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: var(--primary-color);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
}

.btn-outline:hover {
    background: var(--accent-color);
    color: var(--white);
}

.btn-outline-light {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--accent-color);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-block {
    display: block;
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 1rem auto;
}

.services-preview,
.packages-preview,
.why-choose-us {
    padding: 5rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.service-card p {
    color: var(--text-light);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.package-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition);
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.package-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

.package-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.package-price {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.package-features {
    list-style: none;
    padding: 2rem;
}

.package-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--light-color);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features i {
    color: var(--success);
}

.package-card .btn {
    margin: 0 2rem 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-box {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-box h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.cta-section {
    background: var(--gradient-accent);
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.page-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.services-detail,
.packages-detail,
.about-content,
.contact-section,
.order-section {
    padding: 5rem 0;
}

.text-center {
    text-align: center;
}

.lead {
    font-size: 1.2rem;
    color: var(--text-light);
}

.cipc-registrations-heading {
    text-align: center;
    margin: 3rem 0 2rem 0;
}

.cipc-registrations-heading h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #C9302C;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.services-grid-detail {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.service-card-detail {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

.service-card-detail:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon-large {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2.5rem;
}

.service-process {
    margin: 5rem 0;
    text-align: center;
}

.service-process h2 {
    margin-bottom: 3rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.process-step {
    padding: 2rem 1rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.contact-departments {
    margin: 5rem 0;
}

.departments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.department-card {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.department-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.department-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.packages-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin: 3rem 0;
}

.package-card-full {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    padding: 2.5rem;
    position: relative;
    transition: var(--transition);
}

.package-card-full:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.package-badge {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.package-price-large {
    text-align: center;
    margin: 2rem 0;
}

.package-price-large .currency {
    font-size: 2rem;
    vertical-align: super;
}

.package-price-large .amount {
    font-size: 4rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: var(--dark-color);
}

.package-features-full {
    list-style: none;
    margin: 2rem 0;
}

.package-features-full li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--light-color);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.package-features-full li:last-child {
    border-bottom: none;
}

.package-features-full i {
    color: var(--success);
    font-size: 1.2rem;
}

.package-features-explained {
    margin: 5rem 0;
}

.features-explanation {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-explanation {
    padding: 1.5rem;
    background: var(--light-color);
    border-radius: 10px;
}

.feature-explanation h4 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-explanation i {
    color: var(--primary-color);
}

.package-cta {
    background: var(--light-color);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin-top: 3rem;
}

.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.mission-card {
    background: var(--light-color);
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
}

.mission-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.values-section {
    margin: 5rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    text-align: center;
    padding: 2rem 1rem;
}

.value-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-card h4 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.what-we-do {
    margin: 5rem 0;
}

.services-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.service-overview-card {
    text-align: center;
    padding: 2rem;
}

.service-icon-big {
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 3rem;
}

.why-us-detailed {
    margin: 5rem 0;
}

.benefits-list {
    list-style: none;
    max-width: 800px;
    margin: 2rem auto;
}

.benefits-list li {
    padding: 1rem;
    margin: 1rem 0;
    background: var(--light-color);
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefits-list i {
    color: var(--success);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.tagline-section {
    text-align: center;
    margin: 5rem 0;
    padding: 3rem;
    background: var(--gradient-primary);
    border-radius: 20px;
    color: var(--white);
}

.tagline-section blockquote p {
    font-size: 2rem;
    font-style: italic;
    font-family: 'Playfair Display', serif;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info-section h2,
.contact-form-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.contact-form-section {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.contact-form {
    width: 100%;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-detail {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-detail i {
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-detail h4 {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.email-dept {
    margin: 0.75rem 0;
}

.help-contact {
    margin-top: 1rem;
}

.help-contact p {
    margin: 0.5rem 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark-color);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--light-color);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group small {
    display: block;
    margin-top: 0.25rem;
    color: var(--text-light);
    font-size: 0.875rem;
}

.form-notice {
    background: var(--light-color);
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin: 1.5rem 0;
}

.form-notice i {
    color: var(--primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.form-notice p {
    font-size: 0.9rem;
    margin: 0;
}

.alert {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.alert i {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.alert-success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #4caf50;
}

.alert-error {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #f44336;
}

.alert ul {
    margin: 0;
    padding-left: 1.5rem;
}

.alert ul li {
    margin: 0.25rem 0;
}

.order-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.package-summary {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.package-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 1rem 0;
}

.package-price-display {
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    margin: 1rem 0;
}

.summary-features {
    list-style: none;
    margin-top: 1rem;
}

.summary-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.summary-features i {
    color: var(--light-color);
}

.order-help,
.order-process {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.order-process ol {
    padding-left: 1.5rem;
    margin-top: 1rem;
}

.order-process li {
    margin: 0.75rem 0;
}

.order-success-message {
    text-align: center;
    max-width: 700px;
    margin: 3rem auto;
    padding: 3rem;
    background: var(--light-color);
    border-radius: 20px;
}

.success-icon {
    font-size: 5rem;
    color: var(--success);
    margin-bottom: 1rem;
}

.order-ref {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    font-size: 1.1rem;
}

.success-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.main-footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 4rem 0 2rem;
    margin-top: 5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 168px;
    width: auto;
    max-width: 420px;
    object-fit: contain;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-section h3,
.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.tagline {
    font-style: italic;
    color: var(--primary-color) !important;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin: 0.5rem 0;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.contact-info i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.email-list {
    display: flex;
    flex-direction: column;
}

.email-list small {
    color: var(--primary-color);
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    display: none;
    z-index: 10000;
    animation: slideIn 0.3s ease;
}

.notification.show {
    display: block;
}

.notification.success {
    background: var(--success);
    color: var(--white);
}

.notification.error {
    background: var(--error);
    color: var(--white);
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        max-width: 300px;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        gap: 1rem;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-headline {
        font-size: 1.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
    
    .services-grid,
    .packages-grid,
    .services-grid-detail,
    .packages-grid-full {
        grid-template-columns: 1fr;
    }
    
    .contact-content,
    .order-content {
        grid-template-columns: 1fr;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .site-logo {
        height: 95px;
        max-width: 378px;
    }
    
    .footer-logo {
        height: 126px;
        max-width: 315px;
    }
    
    .logo-text-main {
        font-size: 1.5rem;
    }
    
    .logo-text-sub {
        font-size: 0.6rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .package-price-large .amount {
        font-size: 3rem;
    }
}
