/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Typography */
h1, h2, h3 {
    font-weight: 600;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: #0077be;
    color: white;
}

.btn-primary:hover {
    background-color: #005fa3;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #0077be;
    border: 2px solid #0077be;
}

.btn-secondary:hover {
    background-color: #0077be;
    color: white;
    transform: translateY(-2px);
}

/* Header */
.main-header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    position: relative;
    z-index: 1001;
}

.logo-icon {
    display: flex;
    align-items: center;
    position: relative;
}

.logo-svg {
    width: 60px;
    height: 60px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(116, 185, 255, 0.3));
}

.logo:hover .logo-svg {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 6px 12px rgba(116, 185, 255, 0.4));
}

.logo-text {
    font-size: 2rem;
    font-weight: 700;
    color: #0077be;
    text-decoration: none;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0, 119, 190, 0.1);
    transition: all 0.3s ease;
}

.logo:hover .logo-text {
    color: #005fa3;
    text-shadow: 0 2px 8px rgba(0, 119, 190, 0.2);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #0077be;
    background-color: #f0f8ff;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background-color: #0077be;
    border-radius: 1px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
    color: white;
    padding: 140px 0 80px 0;
    text-align: center;
    margin-top: -60px;
    position: relative;
    z-index: 999;
}

.brand-name {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.tagline {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.95;
}

/* Why We're Different Section */
.why-different {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.why-different h2 {
    color: #333;
}

.features-list {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
}

.features-list li {
    padding: 1rem 0;
    font-size: 1.2rem;
    position: relative;
    padding-left: 2rem;
}

.features-list li::before {
    content: "❄️";
    position: absolute;
    left: 0;
    top: 1rem;
}

/* Order Section */
.order-section {
    padding: 80px 0;
    background-color: white;
}

.order-section h2 {
    color: #333;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-block {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.service-image {
    margin-bottom: 1.5rem;
}

.service-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    background-color: #f0f0f0;
    border: 2px solid #e0e0e0;
}

.service-block h3 {
    color: #0077be;
    margin-bottom: 1rem;
}

.service-block p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #666;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact h2 {
    color: #333;
}

.contact-info {
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
}

.contact-info p {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.contact-info a {
    color: #0077be;
    text-decoration: none;
    font-weight: 600;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Footer */
.site-footer {
    background-color: #333;
    color: white;
    padding: 1.5rem 0;
    border-top: 3px solid #0077be;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-left p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-center .contact-info {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.footer-center .contact-info span a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-center .contact-info span a:hover {
    opacity: 1;
    color: #74b9ff;
}

.footer-right .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    width: 44px;
    height: 44px;
}

.footer-right .social-link:hover {
    background-color: #0077be;
    color: white;
    transform: translateY(-2px);
}

.footer-right .social-link svg {
    width: 24px;
    height: 24px;
}

/* Hero CTAs */
.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Business Solutions */
.business-solutions {
    padding: 80px 0;
    background-color: white;
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.business-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.business-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.business-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.business-card h3 {
    color: #0077be;
    margin-bottom: 1rem;
}

.business-card ul {
    text-align: left;
    margin-top: 1rem;
}

.business-card li {
    padding: 0.5rem 0;
    color: #666;
}

/* Page Hero Styles */
.page-hero {
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
    color: white;
    padding: 140px 0 80px 0;
    text-align: center;
    margin-top: -60px;
    position: relative;
    z-index: 999;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-hero p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Order Form Section */
.order-form-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.order-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.order-info h2 {
    color: #333;
    text-align: left;
    margin-bottom: 2rem;
}

.contact-methods {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.contact-method {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-method h3 {
    color: #0077be;
    margin-bottom: 1rem;
}

.delivery-info {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.product-image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    background-color: #f0f0f0;
    border: 2px solid #e0e0e0;
    margin-bottom: 1.5rem;
}

.product-options {
    margin: 1rem 0;
}

.option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.option:last-child {
    border-bottom: none;
}

.size {
    font-weight: 600;
    color: #333;
}

.price {
    font-weight: 700;
    color: #0077be;
    font-size: 1.1rem;
}

/* About Section Styles */
.about-section {
    padding: 80px 0;
    background-color: white;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h2 {
    text-align: left;
    margin-bottom: 2rem;
}

.values {
    margin-top: 2rem;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
}

.team-image img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.image-caption {
    font-style: italic;
    color: #666;
    text-align: center;
}

/* Mission Section */
.mission-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.mission-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.mission-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.mission-item h3 {
    color: #0077be;
    margin-bottom: 1rem;
}

/* Contact Section Styles */
.contact-section {
    padding: 80px 0;
    background-color: white;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.contact-item {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.contact-item h3 {
    color: #0077be;
    margin-bottom: 1rem;
}

.cta-section {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

/* Ice About Styles */
.ice-about {
    padding: 80px 0;
    background-color: white;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.feature h3 {
    color: #0077be;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.ice-gallery img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.gallery-caption h4 {
    color: #0077be;
    margin-bottom: 0.5rem;
}

/* Product Details */
.product-details {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.products-showcase {
    margin-top: 3rem;
}

.product-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.product-showcase:nth-child(even) {
    direction: rtl;
}

.product-showcase:nth-child(even) > * {
    direction: ltr;
}

.product-image-large img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
}

.product-specs {
    list-style: none;
    margin-top: 1rem;
}

.product-specs li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

/* Quality Guarantee */
.quality-guarantee {
    padding: 80px 0;
    background-color: white;
}

.guarantee-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.guarantee-item {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.guarantee-item h3 {
    color: #0077be;
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .header-content {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0;
    }

    .main-nav ul {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .logo-svg {
        width: 50px;
        height: 50px;
    }

    .hero,
    .page-hero {
        padding: 100px 0 60px 0;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }

    .page-hero p {
        font-size: 1.1rem;
    }

    .brand-name {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    h2 {
        font-size: 2rem;
    }

    .why-different,
    .order-section,
    .contact,
    .business-solutions,
    .order-form-section,
    .about-section,
    .mission-section,
    .contact-section,
    .ice-about,
    .product-details,
    .quality-guarantee {
        padding: 60px 0;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

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

    .order-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .mission-content {
        grid-template-columns: 1fr;
    }

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

    .cta-section {
        flex-direction: column;
        align-items: center;
    }

    .product-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-showcase:nth-child(even) {
        direction: ltr;
    }

    .guarantee-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-center .contact-info {
        flex-direction: column;
        gap: 1rem;
    }

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

    .service-block {
        padding: 1.5rem;
    }

    .features-list li {
        font-size: 1rem;
        padding: 0.8rem 0;
    }

    .contact-info p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .main-nav ul {
        gap: 0.5rem;
    }

    .nav-link {
        padding: 0.3rem 0.6rem;
        font-size: 0.8rem;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .logo-svg {
        width: 40px;
        height: 40px;
    }

    .brand-name {
        font-size: 2rem;
    }

    .hero,
    .page-hero {
        padding: 80px 0 40px 0;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .page-hero p {
        font-size: 1rem;
    }

    .btn-primary, .btn-secondary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .service-image img {
        height: 150px;
    }
}
