/* Main Website Styles - SWC Branding */

:root {
    --swc-dark: #1a1a1a;
    --swc-dark-gray: #2c2c2c;
    --swc-lavender: #e8d5f2;
    --swc-light-lavender: #f5ecfa;
    --swc-primary: #ff6b35;
    --swc-secondary: #f7931e;
    --swc-accent: #ff6b35;
    --swc-success: #10b981;
    --swc-warning: #f59e0b;
    --swc-gradient: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    --swc-gradient-subtle: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    --swc-gradient-hero: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ff8c42 100%);
    --swc-blue: #ff6b35;
    --swc-cyan: #f7931e;
    --swc-text-dark: #1a1a2e;
    --swc-text-gray: #4a5568;
    --swc-bg-light: #f7fafc;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #ffffff;
    font-size: 15px;
    line-height: 1.7;
    color: var(--swc-text-dark);
}

.container {
    max-width: 1200px;
}

/* Top Contact Bar */
.top-contact-bar {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 12px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.contact-text {
    color: white;
}

.contact-text strong {
    color: #a78bfa;
}

/* SWC Navbar */
.swc-navbar {
    background: white !important;
    padding: 18px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-bottom: 1px solid #e5e7eb;
}

.swc-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    padding: 0;
}

.logo-text {
    display: inline-flex;
    align-items: baseline;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 2px;
}

.logo-sw {
    background: var(--swc-gradient-subtle);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.logo-c {
    color: #8b7fa8;
    font-weight: 700;
    position: relative;
}

.logo-c::after {
    content: '';
    position: absolute;
    right: -2px;
    top: 0;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, rgba(139, 127, 168, 0.3) 0%, transparent 70%);
    border-radius: 50%;
}

.logo-subtitle {
    font-size: 10px;
    color: var(--swc-dark-gray);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: -2px;
}

.swc-navbar .nav-link {
    color: var(--swc-text-dark) !important;
    font-weight: 500;
    padding: 8px 16px !important;
    margin: 0 3px;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.swc-navbar .nav-link:hover {
    background: #fff5f0;
    color: var(--swc-primary) !important;
    transform: none;
}

/* Hero Section */
.hero-section {
    background: var(--swc-gradient-hero);
    border-radius: 0;
    padding: 140px 20px 120px;
    margin: 0 0 100px 0;
    position: relative;
    overflow: hidden;
    box-shadow: none;
}

.hero-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255,255,255,0.06) 0%, transparent 50%);
    opacity: 0.6;
}

.hero-floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: -50px;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    bottom: -30px;
    left: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    right: 5%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }
    50% { 
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.6;
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 25px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.2);
    line-height: 1.2;
    letter-spacing: -1px;
}

.highlight-text {
    background: linear-gradient(120deg, #fff 0%, #e8f4f8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    height: 8px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 4px;
    z-index: -1;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 400;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
    animation: fadeInDown 0.8s ease-out;
}

.badge-text {
    background: rgba(255, 255, 255, 0.25);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-badge i {
    font-size: 1.1rem;
    color: #ffd700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-features {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255, 255, 255, 0.95);
    padding: 20px 15px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon-wrapper {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.feature-icon-wrapper i {
    font-size: 2.2rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.feature-label {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
}

.feature-desc {
    font-size: 0.8rem;
    opacity: 0.85;
    font-weight: 400;
    display: block;
}

.hero-section .btn {
    padding: 14px 35px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-hero-primary {
    background: white;
    color: var(--swc-primary);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    color: var(--swc-primary);
    background: #f8f9fa;
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    color: white;
}

.hero-section .btn i {
    margin-right: 6px;
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 16px;
    padding: 45px 35px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #e5e7eb;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.12);
    border-color: var(--swc-primary);
}

.service-card i {
    font-size: 4.5rem;
    background: var(--swc-gradient-subtle);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    display: block;
}

.service-card h3 {
    color: var(--swc-text-dark);
    font-weight: 700;
    font-size: 1.4rem;
    margin: 25px 0 15px 0;
}

.service-card p {
    color: var(--swc-text-gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Package Cards */
.package-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #e5e7eb;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    position: relative;
}

.package-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.15);
    border-color: var(--swc-primary);
}

.package-card-header {
    background: var(--swc-gradient-subtle);
    color: white;
    padding: 30px 25px;
    text-align: center;
}

.package-card-header h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    letter-spacing: -0.3px;
}

.package-card-header p {
    margin: 0;
    opacity: 0.9;
    font-size: 0.85rem;
}

.package-card-body {
    padding: 35px 30px;
}

.package-price {
    font-size: 2.3rem;
    font-weight: 800;
    background: var(--swc-gradient-subtle);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 20px 0;
    letter-spacing: -0.5px;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.package-features li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
    font-size: 0.9rem;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features li i {
    color: #28a745;
    margin-right: 10px;
    font-size: 1.2rem;
}

.package-card-footer {
    padding: 20px 30px;
    background: #f8f9fa;
    border-top: 1px solid #e0e0e0;
}

.package-card-footer .btn {
    width: 100%;
    padding: 12px;
    font-weight: 600;
    border-radius: 8px;
    background: var(--swc-gradient-subtle);
    border: none;
    color: white;
    transition: all 0.3s ease;
}

.package-card-footer .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.35);
}

/* Info Alert */
.alert-info {
    background: linear-gradient(135deg, #fff5f0 0%, #ffe5d9 100%);
    border: 1px solid #ffd4b3;
    color: var(--swc-text-dark);
    border-radius: 12px;
    padding: 18px 25px;
    margin: 40px 0;
}

.alert-info i {
    color: var(--swc-primary);
}

/* Cards */
.card {
    border: none;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.12);
}

.badge {
    padding: 0.5em 0.75em;
    border-radius: 5px;
}

.footer {
    margin-top: 80px;
    background: var(--swc-dark);
    color: white;
    padding: 40px 0;
}

/* Custom button styles */
.btn {
    border-radius: 8px;
    padding: 0.6rem 1.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--swc-gradient-subtle);
    border: none;
}

.btn-primary:hover {
    background: var(--swc-gradient-subtle);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.35);
}

/* Table styles */
.table {
    border-radius: 10px;
    overflow: hidden;
}

.table thead {
    background: var(--swc-gradient-subtle);
    color: white;
}

/* Form styles */
.form-control, .form-select {
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    padding: 10px 15px;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--swc-primary);
    box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.2);
}

/* Section Headings */
.section-heading {
    text-align: center;
    margin: 0 0 50px 0;
    padding: 0;
}

.section-heading h1,
.section-heading h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--swc-text-dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    letter-spacing: -0.5px;
}

.section-heading h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--swc-gradient-subtle);
    border-radius: 2px;
}

.section-heading p {
    color: var(--swc-text-gray);
    font-size: 1.05rem;
    margin-top: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Why Choose Us Section */
.why-choose-section {
    background: #ffffff;
    margin: 0;
    padding: 100px 0;
    position: relative;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.2), transparent);
}

.why-card {
    background: white;
    border-radius: 16px;
    padding: 35px 28px;
    text-align: center;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    border: 2px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--swc-gradient-subtle);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.3);
}

.why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 22px;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid #f0f0f0;
}

.why-card:hover .why-icon {
    background: var(--swc-gradient-subtle);
    transform: scale(1.1) rotate(5deg);
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.25);
}

.why-icon i {
    font-size: 2.2rem;
    color: var(--swc-primary);
    transition: all 0.4s ease;
}

.why-card:hover .why-icon i {
    color: white;
    transform: scale(1.1);
}

.why-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--swc-dark-gray);
    margin-bottom: 14px;
    letter-spacing: -0.3px;
}

.why-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Features Section */
.features-section {
    background: var(--swc-bg-light);
    padding: 80px 0;
    margin: 0;
}

.feature-box {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.1);
    border-color: var(--swc-primary);
}

.feature-box-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #fff5f0 0%, #ffe5d9 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-box:hover .feature-box-icon {
    background: var(--swc-gradient-subtle);
    transform: scale(1.1);
}

.feature-box-icon i {
    font-size: 2rem;
    color: var(--swc-primary);
    transition: all 0.3s ease;
}

.feature-box:hover .feature-box-icon i {
    color: white;
}

.feature-box h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--swc-text-dark);
    margin-bottom: 8px;
}

.feature-box p {
    font-size: 0.85rem;
    color: var(--swc-text-gray);
    margin: 0;
}

/* Trust Section */
.trust-section {
    background: white;
    padding: 100px 0;
    margin: 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.trust-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--swc-text-dark);
    margin-bottom: 15px;
    line-height: 1.3;
}

.trust-subtitle {
    font-size: 1rem;
    color: var(--swc-text-gray);
    line-height: 1.7;
    margin: 0;
}

.trust-stats {
    margin-top: 40px;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--swc-gradient-subtle);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--swc-text-gray);
    font-weight: 500;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: #fff5f0;
    border-radius: 12px;
    border: 1px solid #ffe5d9;
    transition: all 0.3s ease;
}

.trust-badge-item:hover {
    background: var(--swc-gradient-subtle);
    border-color: transparent;
    transform: translateX(5px);
}

.trust-badge-item i {
    font-size: 1.5rem;
    color: var(--swc-primary);
    transition: all 0.3s ease;
}

.trust-badge-item:hover i {
    color: white;
}

.trust-badge-item span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--swc-text-dark);
    transition: all 0.3s ease;
}

.trust-badge-item:hover span {
    color: white;
}

/* Contact Page Styles */
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: var(--swc-gradient-subtle);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.3rem;
    color: white;
}

.contact-info-item h6 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--swc-dark-gray);
    margin-bottom: 5px;
}

.contact-info-item p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.contact-info-item a {
    color: var(--swc-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-item a:hover {
    color: var(--swc-secondary);
    text-decoration: underline;
}

.contact-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-benefits li {
    padding: 10px 0;
    font-size: 0.9rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-benefits li i {
    color: #28a745;
    font-size: 1.1rem;
}

/* Dropdown Menu Styling */
.dropdown-menu {
    border-radius: 10px;
    border: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    padding: 10px 0;
    margin-top: 10px;
}

.dropdown-item {
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: var(--swc-gradient-subtle);
    color: white;
}

/* Navbar Dropdown */
.swc-navbar .dropdown-toggle::after {
    margin-left: 5px;
}

/* Additional Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.package-card {
    animation: fadeInUp 0.6s ease-out;
}

.service-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 80px 15px 70px;
        margin: 0 0 60px 0;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .trust-title {
        font-size: 1.8rem;
    }
    
    .trust-badges {
        grid-template-columns: 1fr;
        margin-top: 30px;
    }
    
    .section-heading h1,
    .section-heading h2 {
        font-size: 1.8rem;
    }
    
    .badge-text {
        font-size: 0.8rem;
        padding: 8px 18px;
    }
    
    .feature-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon-wrapper i {
        font-size: 1.8rem;
    }
    
    .feature-label {
        font-size: 0.85rem;
    }
    
    .feature-desc {
        font-size: 0.75rem;
    }
    
    .hero-section .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .logo-text {
        font-size: 24px;
    }
    
    .logo-subtitle {
        font-size: 8px;
    }
    
    .service-card {
        padding: 35px 25px;
        margin-bottom: 20px;
    }
    
    .package-card {
        margin-bottom: 30px;
    }
    
    .why-choose-section,
    .features-section,
    .trust-section {
        padding: 50px 0;
    }
    
    .top-contact-bar {
        font-size: 0.8rem;
        padding: 10px 0;
    }
    
    .swc-navbar {
        padding: 12px 0;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

