/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.logo-container {
    flex: 0 0 auto;
}

.logo {
    height: 160px;
    width: auto;
}

.header-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.header-info {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.header-contact {
    display: flex;
    gap: 25px;
    align-items: center;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-label {
    font-size: 14px;
    font-weight: 600;
    color: #1e40af;
}

.contact-value {
    font-size: 14px;
    color: #334155;
    font-weight: 500;
}

.contact-value a {
    color: #dc2626;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.contact-value a:hover {
    color: #b91c1c;
}

.header-right nav {
    display: flex;
    align-items: center;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

nav a {
    text-decoration: none;
    color: #1e40af;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #dc2626;
}

.cta-button {
    background-color: #dc2626;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #dc2626;
}

.cta-button:hover {
    background-color: #b91c1c;
    border-color: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

/* Hero Section */
.hero {
    background-image: url('https://superifyportapottyrental.com/images/portable%20toilet%20rental%20background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    padding: 100px 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.85) 0%, rgba(30, 64, 175, 0.7) 50%, rgba(220, 38, 38, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-intro {
    font-size: 20px;
    margin-bottom: 35px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 400;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.cta-button-large {
    display: inline-block;
    background-color: #fbbf24;
    color: #1e40af;
    padding: 18px 45px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 800;
    font-size: 20px;
    transition: all 0.3s ease;
    border: 3px solid #fbbf24;
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
}

.cta-button-large:hover {
    background-color: #f59e0b;
    border-color: #f59e0b;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.5);
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: #f8fafc;
}

.services h2 {
    text-align: center;
    font-size: 42px;
    color: #1e40af;
    margin-bottom: 15px;
    font-weight: 800;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #64748b;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid #e2e8f0;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(30, 64, 175, 0.2);
    border-color: #3b82f6;
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 22px;
    color: #1e40af;
    margin: 25px 25px 15px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.service-card p {
    padding: 0 25px 25px;
    color: #475569;
    line-height: 1.7;
}

/* How To Book Section */
.how-to-book {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
}

.how-to-book h2 {
    text-align: center;
    font-size: 42px;
    color: #1e40af;
    margin-bottom: 15px;
    font-weight: 800;
}

.timeline {
    max-width: 900px;
    margin: 50px auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 40px;
    bottom: 40px;
    width: 4px;
    background: linear-gradient(180deg, #3b82f6 0%, #dc2626 100%);
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
    align-items: flex-start;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: white;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-icon {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.6);
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    top: 5px;
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 20px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 12px solid white;
}

.timeline-item:hover .timeline-content {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(30, 64, 175, 0.15);
    border-color: #3b82f6;
}

.timeline-content h3 {
    font-size: 24px;
    color: #1e40af;
    margin-bottom: 12px;
    font-weight: 700;
}

.timeline-content p {
    color: #475569;
    line-height: 1.7;
    font-size: 16px;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: #ffffff;
}

.about h2 {
    text-align: center;
    font-size: 42px;
    color: #1e40af;
    margin-bottom: 50px;
    font-weight: 800;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 35px;
}

.about-card {
    text-align: center;
    padding: 35px 25px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.12);
    border-color: #1e40af;
}

.icon {
    font-size: 48px;
    color: #dc2626;
    margin-bottom: 20px;
    font-weight: bold;
}

.about-card h3 {
    font-size: 22px;
    color: #1e40af;
    margin-bottom: 15px;
    font-weight: 700;
}

.about-card p {
    color: #475569;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
}

.contact h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 800;
    color: white;
}

.contact .section-subtitle {
    color: #dbeafe;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin: 50px 0;
    text-align: center;
}

.contact-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #fbbf24;
    font-weight: 700;
}

.contact-item p {
    font-size: 18px;
    line-height: 1.7;
}

.contact-item a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

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

.cta-section {
    text-align: center;
    margin-top: 50px;
}

/* Footer */
footer {
    background-color: #0f172a;
    color: #cbd5e1;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 110px;
    width: auto;
    margin-bottom: 15px;
}

.footer-section h4 {
    color: #fbbf24;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-section p {
    margin-bottom: 10px;
    line-height: 1.7;
}

.footer-section a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #fbbf24;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.footer-section ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #dc2626;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #334155;
}

/* Responsive Design */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        justify-content: center;
        gap: 20px;
        padding: 15px 20px;
    }

    .logo {
        height: 110px;
    }

    .header-right {
        width: 100%;
        align-items: center;
    }

    .header-info {
        justify-content: center;
    }

    .header-contact {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .contact-detail {
        flex-direction: column;
        gap: 5px;
    }

    nav ul {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav a {
        font-size: 14px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero-intro {
        font-size: 16px;
    }

    .cta-button-large {
        font-size: 18px;
        padding: 15px 35px;
    }

    .services h2,
    .about h2,
    .contact h2 {
        font-size: 32px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }

    .timeline-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .timeline-item {
        gap: 20px;
    }

    .timeline-content {
        padding: 25px;
    }

    .timeline-content h3 {
        font-size: 20px;
    }

    .timeline-content p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .logo {
        height: 100px;
    }

    .header-contact {
        font-size: 13px;
    }

    .contact-label,
    .contact-value {
        font-size: 13px;
    }

    nav ul {
        gap: 15px;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 14px;
    }

    .hero {
        min-height: 500px;
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-intro {
        font-size: 15px;
    }

    .services,
    .how-to-book,
    .about,
    .contact {
        padding: 50px 0;
    }

    .service-card h3,
    .about-card h3 {
        font-size: 20px;
    }

    .timeline::before {
        left: 15px;
    }

    .timeline-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .timeline-item {
        gap: 15px;
        margin-bottom: 35px;
    }

    .timeline-content {
        padding: 20px;
        top: 0;
    }

    .timeline-content h3 {
        font-size: 18px;
    }

    .timeline-content p {
        font-size: 14px;
    }

    .timeline-content::before {
        left: -8px;
        border-right-width: 8px;
    }
}
