/* ===== CSS VARIABLES ===== */
:root {
    --primary-color: #d4af37;
    --secondary-color: #1a1a1a;
    --accent-color: #c9a961;
    --text-light: #ffffff;
    --text-dark: #2c2c2c;
    --bg-light: #f8f8f8;
    --bg-dark: #0f0f0f;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 15px 50px rgba(0, 0, 0, 0.2);
    --shadow-hard: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--text-light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.3;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
}

.logo-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 60%;
    height: 2px;
    background: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 45px;
    align-items: center;
}

.nav-link {
    color: var(--text-light);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.5px;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.contact-btn {
    background: var(--primary-color);
    padding: 12px 30px;
    border-radius: 30px;
    color: var(--secondary-color);
    font-weight: 600;
}

.nav-link.contact-btn::after {
    display: none;
}

.nav-link.contact-btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--text-light);
    border-radius: 3px;
    transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('https://lh3.googleusercontent.com/p/AF1QipMOwxN2d73Y3R_N6M-myjfCQtsUNnEUaenf5hWW=s680-w680-h510-rw') center/cover no-repeat fixed;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-light);
    animation: fadeInUp 1.2s ease-out;
}

.hero-title {
    font-size: clamp(60px, 10vw, 120px);
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.title-line {
    display: block;
    opacity: 0;
    animation: slideInLeft 1s ease-out forwards;
}

.title-line-delay {
    animation-delay: 0.3s;
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: clamp(18px, 3vw, 26px);
    margin-bottom: 50px;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.6s forwards;
}

.hero-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.9s forwards;
}

.btn {
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-transform: uppercase;
    display: inline-block;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-secondary:hover {
    background: var(--text-light);
    color: var(--secondary-color);
    transform: translateY(-5px);
}

.btn-light {
    background: var(--text-light);
    color: var(--secondary-color);
    box-shadow: var(--shadow-medium);
}

.btn-light:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hard);
}

.btn-large {
    padding: 20px 60px;
    font-size: 18px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: var(--text-light);
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeIn 1s ease-out 1.2s forwards;
}

.scroll-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, var(--primary-color), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-label {
    display: inline-block;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.section-title {
    font-size: clamp(40px, 6vw, 65px);
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 0 auto;
    border-radius: 2px;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 120px 0;
    background: var(--bg-light);
}

.about-content {
    max-width: 1100px;
    margin: 0 auto;
}

.about-text {
    text-align: center;
}

.about-intro {
    font-size: clamp(22px, 3vw, 28px);
    font-family: 'Playfair Display', serif;
    color: var(--secondary-color);
    margin-bottom: 30px;
    font-weight: 500;
    line-height: 1.6;
}

.about-text p {
    font-size: 17px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.9;
}

.order-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin: 50px 0;
    flex-wrap: wrap;
}

.btn-swiggy {
    background: linear-gradient(135deg, #fc8019 0%, #ff5200 100%);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 30px rgba(252, 128, 25, 0.4);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

.btn-swiggy:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(252, 128, 25, 0.6);
    background: linear-gradient(135deg, #ff5200 0%, #fc8019 100%);
}

.btn-zomato {
    background: linear-gradient(135deg, #e23744 0%, #c72027 100%);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 30px rgba(226, 55, 68, 0.4);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

.btn-zomato:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(226, 55, 68, 0.6);
    background: linear-gradient(135deg, #c72027 0%, #e23744 100%);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.btn-whatsapp:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
}

.btn-icon {
    font-size: 22px;
    display: inline-block;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 70px;
}

.feature {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature:hover::before {
    transform: scaleX(1);
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.feature p {
    font-size: 15px;
    color: #888;
}

/* ===== MENU SECTION ===== */
.menu-section {
    padding: 120px 0;
    background: white;
}

.menu-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

.menu-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-hard);
    height: 800px;
}

.menu-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: rotate(90deg);
    transform-origin: center;
    transition: var(--transition);
}

.menu-image-container:hover .menu-image {
    transform: rotate(90deg) scale(1.05);
}

.menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.menu-image-container:hover .menu-overlay {
    opacity: 1;
}

.view-menu-btn {
    padding: 16px 40px;
}

.menu-highlights {
    padding: 40px;
    background: var(--bg-light);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.menu-highlights h3 {
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--secondary-color);
    text-align: center;
}

.highlight-item {
    padding: 30px;
    margin-bottom: 25px;
    background: white;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.highlight-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-medium);
}

.highlight-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.highlight-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* ===== GALLERY SECTION ===== */
.gallery {
    padding: 120px 0;
    background: linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
    position: relative;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.gallery::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.gallery .section-title {
    color: var(--text-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.gallery-item {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(212, 175, 55, 0.1);
    transition: var(--transition);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    z-index: 2;
    transition: left 0.6s ease;
}

.gallery-item:hover::before {
    left: 100%;
}

.gallery-item:hover {
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.7), 0 0 0 1px var(--primary-color);
}

.gallery-item-large {
    grid-column: span 2;
    height: 550px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 40px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-caption {
    font-size: 24px;
    font-family: 'Playfair Display', serif;
    color: var(--text-light);
    font-weight: 600;
}

/* ===== LOCATION SECTION ===== */
.location {
    padding: 120px 0;
    background: var(--bg-light);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.info-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.info-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-hard);
    height: 100%;
    min-height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border: none;
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 120px 0;
    background: linear-gradient(180deg, #f8f8f8 0%, #ffffff 100%);
}

.contact-content {
    max-width: 900px;
    margin: 0 auto;
}

.contact-cta {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-info-box {
    text-align: center;
    background: white;
    padding: 70px 60px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.contact-icon {
    font-size: 80px;
    margin-bottom: 25px;
}

.contact-info-box h3 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.contact-info-box p {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-methods {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-whatsapp-large {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 20px 50px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0.5px;
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.btn-whatsapp-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(37, 211, 102, 0.6);
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
}

.btn-call {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px 50px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0.5px;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.btn-call:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.6);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}



/* ===== FOOTER ===== */
.footer {
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.footer-section p {
    font-size: 15px;
    line-height: 1.8;
    color: #aaa;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
    color: #aaa;
    font-size: 15px;
}

.footer-section ul li a {
    color: #aaa;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.social-link {
    color: #aaa;
    font-size: 15px;
    transition: var(--transition);
}

.social-link:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: #777;
}

/* ===== MODAL ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    margin: 2% auto;
    padding: 20px;
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    overflow: auto;
}

.modal-menu-image {
    width: 100%;
    height: auto;
    transform: rotate(90deg);
    margin: 10% 0;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 50px;
    color: var(--text-light);
    cursor: pointer;
    z-index: 2001;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scrollLine {
    0%, 100% {
        transform: scaleY(1);
        opacity: 1;
    }
    50% {
        transform: scaleY(1.5);
        opacity: 0.5;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .nav-container {
        padding: 0 30px;
    }

    .menu-content {
        grid-template-columns: 1fr;
    }

    .location-content {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-item-large {
        grid-column: span 1;
        height: 400px;
    }
    
    .gallery-item {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(26, 26, 26, 0.98);
        width: 100%;
        padding: 40px 0;
        transition: 0.4s;
        gap: 30px;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        min-height: 600px;
    }

    .hero-title {
        font-size: clamp(50px, 12vw, 80px);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .about,
    .menu-section,
    .gallery,
    .location,
    .contact {
        padding: 80px 0;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .menu-image-container {
        height: 600px;
    }

    .contact-info-box {
        padding: 50px 30px;
    }

    .contact-methods {
        flex-direction: column;
    }

    .btn-whatsapp-large,
    .btn-call {
        width: 100%;
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .nav-container {
        padding: 0 20px;
    }

    .logo-text {
        font-size: 22px;
    }

    .section-title {
        font-size: clamp(32px, 8vw, 45px);
    }

    .about-intro {
        font-size: 20px;
    }

    .feature {
        padding: 30px 20px;
    }

    .menu-highlights {
        padding: 30px 20px;
    }

    .highlight-item {
        padding: 20px;
    }

    .info-card {
        padding: 30px 20px;
    }

    .contact-info-box {
        padding: 40px 20px;
    }

    .contact-icon {
        font-size: 60px;
    }

    .contact-info-box h3 {
        font-size: 28px;
    }

    .contact-info-box p {
        font-size: 16px;
    }
}